Re: listing functions in a library



Dear GameboyHippo,

On Oct 22, 8:48 pm, GameboyHippo <jasonwthomp...@xxxxxxxxx> wrote:
I'm running rdehat 9 (command line only) and have inherited a pretty
complicated library. I wish to see all of the functions in said
library. What is the process to do this?

You can use

nm [OPTIONS] library

nm -g library will give you external symbols
nm -a library will give you all symbols

or look at man nm for other options

Matteo

.