Reputation: 55554
You can use man to view information about specific c functions, such as man strcmp
. Is it possible to list all functions in a header or even just search for functions such as:
man string.h
or
man str*
Upvotes: 3
Views: 565
Reputation: 55554
I thought I had tried this before asking:
You can just do man string
or man stdio
to get a list of functions in each header
Upvotes: 2
Reputation: 8223
You can try something along the lines of
apropos str | grep ^str
Upvotes: 0