hi
i am not sure if this query belongs here , so sorry if i have goofed up..
i am trying to get a list of functions defined by any library and exported as globals . ( as in , a list of all functions which are defined without the static keyword ). The method i used was to use either readelf or nm commands . but these give a list of symbols ( including the global variables) . is there any way of figuring out the list of functions only .
greping the output of the two commands above for "func" did not help because it ended up showing internals functions which it uses but does not define ( something like puts ).
please guide me to some way by wich this can be done
kind regards
Rahul