logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

nlist — retrieve symbol table name list from an executable file

Description

The nlist() function retrieves name list entries from the symbol table of an executable file (see elf(5)). The argument nl is set to reference the beginning of the list. The list is preened of binary and invalid data; if an entry in the name list is valid, the n_type and n_value for the entry are copied into the list referenced by nl. No other data is copied. The last entry in the list is always NULL.

History

A nlist() function appeared in Version 6 AT&T UNIX. Debian April 19, 1994 nlist(3bsd)

Library

Utility functions from BSD systems (libbsd, -lbsd)

Name

nlist — retrieve symbol table name list from an executable file

Return Values

The number of invalid entries is returned if successful; otherwise, if the file filename does not exist or is not executable, or the nl pointer is NULL, the returned value is -1.

See Also

elf(5)

Synopsis

#include<nlist.h> (See libbsd(7) for include usage.) intnlist(constchar*filename, structnlist*nl);

See Also