List of standard header files in C and C++

c, c++, header-files

Solution

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

However, you may also be refering 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.

Problem

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.

Original source

Related problems