Search notes:

header files

#include <some-stdc-library-header-file.h>
<...> headerfiles usually specify header files that belong the the standard c library.
#include "some-non-stdc-library-header-file.h>
"..." header files usually specify header files that are project specific (and are not part of the standard c library).

Index