|
| #define | ltoa(number, str, base) lltoa(number, str, base) |
| |
| #define | itoa(number, str, base) lltoa(number, str, base) |
| |
| #define | ultoa(number, str, base) lltoa(number, str, base) |
| |
| #define | uitoa(number, str, base) lltoa(number, str, base) |
| |
| #define | strtol(nptr, endptr, base) ((long int)strtoll(nptr, endptr, base)) |
| |
| #define | atol(nptr) ((long)atoll(nptr)) |
| |
| #define | atoi(nptr) ((int)atoll(nptr)) |
| |
| #define | RAND_MAX 32767 |
| |
| #define | EXIT_SUCCESS 0 |
| |
| #define | EXIT_FAILURE -1 |
| |
|
| _PUBLIC char * | lltoa (long long number, char *str, int base) |
| |
| _PUBLIC char * | ulltoa (unsigned long long number, char *str, int base) |
| |
| _PUBLIC double | atof (const char *nptr) |
| |
| _PUBLIC double | strtod (const char *_RESTRICT nptr, char **_RESTRICT endptr) |
| |
| _PUBLIC float | strtof (const char *_RESTRICT nptr, char **_RESTRICT endptr) |
| |
| _PUBLIC long double | strtold (const char *_RESTRICT nptr, char **_RESTRICT endptr) |
| |
| _PUBLIC long long int | strtoll (const char *_RESTRICT nptr, char **_RESTRICT endptr, int base) |
| |
| _PUBLIC unsigned long int | strtoul (const char *_RESTRICT nptr, char **_RESTRICT endptr, int base) |
| |
| _PUBLIC unsigned long long int | strtoull (const char *_RESTRICT nptr, char **_RESTRICT endptr, int base) |
| |
| _PUBLIC long long int | atoll (const char *nptr) |
| |
| _PUBLIC int | rand (void) |
| |
| _PUBLIC void | srand (unsigned int seed) |
| |
| _PUBLIC void * | malloc (size_t size) |
| |
| _PUBLIC void * | calloc (size_t nmemb, size_t size) |
| |
| _PUBLIC void | free (void *ptr) |
| |
| _PUBLIC void * | realloc (void *ptr, size_t size) |
| |
| _PUBLIC _NORETURN void | abort (void) |
| |
| _PUBLIC int | at_quick_exit (void(*func)(void)) |
| |
| _PUBLIC int | atexit (void(*func)(void)) |
| |
| _PUBLIC _NORETURN void | exit (int status) |
| |
| _PUBLIC _NORETURN void | quick_exit (int status) |
| |
| _PUBLIC _NORETURN void | _Exit (int status) |
| |
| _PUBLIC char * | getenv (const char *name) |
| |
| _PUBLIC int | system (const char *string) |
| |
| _PUBLIC void * | bsearch (const void *key, const void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *)) |
| |
| _PUBLIC void | qsort (void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *)) |
| |
| _PUBLIC int | abs (int j) |
| |
| _PUBLIC long int | labs (long int j) |
| |
| _PUBLIC long long int | llabs (long long int j) |
| |
| _PUBLIC div_t | div (int numer, int denom) |
| |
| _PUBLIC ldiv_t | ldiv (long int numer, long int denom) |
| |
| _PUBLIC lldiv_t | lldiv (long long int numer, long long int denom) |
| |