Function names extraction from static library
Write
nm static_library.a
This gives you complete list of symbols in the library.
Use nm <library>
as mentioned.
If this is a library built from C++ you should use the nm --demangle
option to get back the original symbol names rather than their "mangled" versions.