FunyBunyFartAHH
Jan 2nd, 2003, 10:36 PM
ok well I would like to know all the contents of stdio.h and its meaning, along with some or all of the other c++ librerie's. Please help me... I could not figure this crap out lol.....
twanvl
Jan 3rd, 2003, 06:14 AM
You can find the source of stdio.h, and other library headers in your compilers include directory, usualy compiler-path/include. These headers only contain the function declarations of the library functions, the actual code is in a static or dynamicly linked library (.lib). For MSVC the source code of that lib is not availible, for gcc (glibc) the library is open source.
The C++ standard librarie headers (no extention) usualy don't need additional .cpp files, they are all contained in the header files, but be prepared for a lot of templates (and ugly code if you have MSVC)
transcendental
Jan 3rd, 2003, 07:26 AM
http://www.cplusplus.com/ref/#libs
:)