ILE C/C++ Run-Time Library Functions


<stdlib.h>

The <stdlib.h> include file declares the following functions:

abort
abs
atexit
atof
atoi
atol
bsearch
calloc
div
exit
free
_gcvt1
getenv
_itoa1
_ltoa1
labs



llabs
ldiv
lldiv
malloc
mblen
mbstowcs
mbtowc
putenv
qsort
rand
rand_r
realloc
srand
strtod
strtol
strtoll
strtoul
strtoull
system
_ultoa1
wctomb
wcstombs
Note:
1 These functions are applicable to C++ only.

The <stdlib.h> include file also contains definitions for the following macros:

NULL
The NULL pointer value.

EXIT_SUCCESS
Expands to 0; used by the atexit function.

EXIT_FAILURE
Expands to 8; used by the atexit function.

RAND_MAX
Expands to an integer that represents the largest number that the rand function can return.

MB_CUR_MAX
Expands to an integral expression to represent the maximum number of bytes in a multibyte character for the current locale.

For more information on NULL and the types size_t and wchar_t, see <stddef.h>.


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]