I'd like to look up all the functions, constants and types defined in C libraries: stdlib.h
, stdio.h
, ctype.h
etc. So, when in C program I do: #include <stdlib.h>
or #include <stdio.h>
I'd like to know what are all the functions, constants and types I get with that?
What's the easiest way to do this locally on the computer? I'm not so much interested in online references, especially if they're not official.
Is there a manpage that lists this for eg stdlib
? Does maybe GNU info
program have docs for this? Or do I have to find an actual header file and look it up?
I'd prefer an universal approach, but if it differs from system to system I'm curious how to do that on both Mac and Linux?