Re: how to tell what functions in a library

2000-12-17 Thread J.H.M. Dassen \(Ray\)
On Thu, Dec 14, 2000 at 22:14:35 -0200, Christoph Simon wrote: > Take the static version of it, then you can use nm(1) nm(1) works for dynamic libaries as well, e.g. nm --defined-only --dynamic /usr/lib/libz.so.1.1.3 HTH, Ray -- RUMOUR Believe all you hear. Your world may not be a bet

Re: how to tell what functions in a library

2000-12-14 Thread Christoph Simon
On Thu, 14 Dec 2000 17:06:32 -0700 (MST) <[EMAIL PROTECTED]> wrote: > What's the best way(s) to tell all the functions contained in a library > or object file (other than reading the man pages)? Take the static version of it, then you can use nm(1) to see all defined symbols, or you can use "ar t

how to tell what functions in a library

2000-12-14 Thread debuser
What's the best way(s) to tell all the functions contained in a library or object file (other than reading the man pages)? Thanks, Gerry