Partial C/C++ Function List

This list of functions is incomplete, but will be updated when possible to eventually fill the list to all library functions.

A note about C vs. C++

Note that header files from the C standard library should have the form headername.h when used in a C program, and the form cheadername when used in C++ programs (note the c as a prefix). For instance, in a C program the stdlib header file would be included as follows
#include <stdlib.h>
whereas in a C++ program it would be included like this:
#include <cstdlib>


Functions Listed Alphabetically