How to list the functions / symbols contained inside a dynamic library in mac os?

c++, osx-leopard, shared-libraries

Solution

Consider How to export symbols from a shared library and How do i find out what all symbols are exported from a shared object?

Also checkout `nm` http://sourceware.org/binutils/docs-2.16/binutils/nm.html

Problem

How to list the functions / symbols contained inside a dynamic library in mac os ? I need to see the list of function exported by a dynamic library.

Original source

Related problems