+ RAND_MAX
Definition
#define RAND_MAX 32767
Description
This is a constant that defines the maximum value generated by the rand() function.
+ MB_CUR_MAX
#define MB_CUR_MAX 1*
* Note: For the U.S. locale this value is 1, but the definition is actually a function which depends on the locale setting.
This defines the maximum length, in bytes, of a multibyte character in the current locale.
+ div_t
typedef struct _div_t { int quot; int rem; } div_t;
This type is used as the result of a integer division for int data types.
+ ldiv_t
typedef struct _ldiv_t { long quot; long rem; } ldiv_t;
This type is used as the result of a integer division for long data types.
abort()
abs()
atexit()
atof()
atoi()
atol()
bsearch()
calloc()
div()
exit()
free()
getenv()
malloc()
mblen()
mbstowcs()
mbtowc()
qsort()
rand()
realloc()
srand()
strtod()
strtol()
strtoul()
system()
wcstombs()
wctomb()
© 20072012 Xoax. All rights reserved.