Brent Williams wrote:
> With windoze based compiler suites, there is a command 'LIB EDITS
> ,LISTFILE.LST' for example where "EDITS" is the library and
> "LISTFILE.LST" is the output file. The output file would contain
> functions the library provides and how to call them.
>
> Is there a command distributed by the gnu project that will give me
> something similar?
>
> For example I am trying to find the functions available with the
> libsnmp.a library.
`nm' will list all of the symbols which are exported by a library.
However, it won't provide the type information (which isn't generally
stored within the library).
In general, you need to refer to the library's documentation. If it
doesn't provide any documentation, then you need to refer to the
library's header file(s).
--
Glynn Clements <[EMAIL PROTECTED]>