3

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*
Mogsdad
  • 44,709
  • 21
  • 151
  • 275
Jonathan.
  • 53,997
  • 54
  • 186
  • 290

2 Answers2

2

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

Jonathan.
  • 53,997
  • 54
  • 186
  • 290
0

You can try something along the lines of

apropos str | grep ^str
Felix Frank
  • 8,125
  • 1
  • 23
  • 30