Search code examples
c++cheader-files

List of standard header files in C and C++


Where could I find the list of all header files in C and C++?

While I am building a library, I am getting an error like 'tree.h not found'. I suppose this is a standard header file in C and C++. This raised in me the curiosity to know all the header files and their contribution.

Is there a place I can search for?

I am working on Solaris Unix.


Solution

  • Try here: http://en.cppreference.com/w/

    However, you may also be referring to the header files of your OS. These can be found either on MSDN (Windows) or by man command (POSIX systems). Or another source if you're on another OS.