Go to the source code of this file.
|
int | atoi (const char *s) |
|
long | atol (const char *s) |
|
char * | itoa (int value, char *str, int base) |
|
char * | ltoa (long value, char *str, int base) |
|
char * | lltoa (long long value, char *str, int base) |
|
char * | utoa (unsigned int value, char *str, int base) |
|
char * | ultoa (unsigned long value, char *str, int base) |
|
char * | ulltoa (unsigned long long value, char *str, int base) |
|
int | rand (void) |
|
void | srand (unsigned int seed) |
|
void | qsort (void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *)) |
|
void * | malloc (size_t size) |
|
void | free (void *buf) |
|
void * | calloc (size_t number, size_t size) |
|
void * | realloc (void *buf, size_t n) |
|
int | abs (int x) |
|
long long | strtoll (const char *nptr, char **endptr, int base) |
|
long | strtol (const char *nptr, char **endptr, int base) |
|
double | strtod (const char *nptr, char **endptr) |
|
long double | strtold (const char *nptr, char **endptr) |
|
float | strtof (const char *nptr, char **endptr) |
|
void | abort (void) |
|
void | exit (int status) |
|
void | call_atexit_callbacks (void) |
|
#define RAND_MAX 0x7fffffff |
int atoi |
( |
const char * |
s | ) |
|
long atol |
( |
const char * |
s | ) |
|
void call_atexit_callbacks |
( |
void |
| ) |
|
char* itoa |
( |
int |
value, |
|
|
char * |
str, |
|
|
int |
base |
|
) |
| |
char* lltoa |
( |
long long |
value, |
|
|
char * |
str, |
|
|
int |
base |
|
) |
| |
char* ltoa |
( |
long |
value, |
|
|
char * |
str, |
|
|
int |
base |
|
) |
| |
void qsort |
( |
void * |
base, |
|
|
size_t |
nmemb, |
|
|
size_t |
size, |
|
|
int(*)(const void *, const void *) |
compar |
|
) |
| |
void* realloc |
( |
void * |
buf, |
|
|
size_t |
n |
|
) |
| |
void srand |
( |
unsigned int |
seed | ) |
|
double strtod |
( |
const char * |
nptr, |
|
|
char ** |
endptr |
|
) |
| |
float strtof |
( |
const char * |
nptr, |
|
|
char ** |
endptr |
|
) |
| |
long strtol |
( |
const char * |
nptr, |
|
|
char ** |
endptr, |
|
|
int |
base |
|
) |
| |
long double strtold |
( |
const char * |
nptr, |
|
|
char ** |
endptr |
|
) |
| |
long long strtoll |
( |
const char * |
nptr, |
|
|
char ** |
endptr, |
|
|
int |
base |
|
) |
| |
char* ulltoa |
( |
unsigned long long |
value, |
|
|
char * |
str, |
|
|
int |
base |
|
) |
| |
char* ultoa |
( |
unsigned long |
value, |
|
|
char * |
str, |
|
|
int |
base |
|
) |
| |
char* utoa |
( |
unsigned int |
value, |
|
|
char * |
str, |
|
|
int |
base |
|
) |
| |