#include <stddef.h>
#include <limits.h>
Go to the source code of this file.
|
unsigned long | strtoul (const char *nptr, char **endptr, int base) |
|
long | strtol (const char *nptr, char **endptr, int base) |
|
int | atoi (const char *s) |
|
void * | malloc (size_t size) |
|
void | free (void *ptr) |
|
void * | calloc (size_t nmemb, size_t size) |
|
void * | realloc (void *ptr, size_t size) |
|
void * | reallocarray (void *ptr, size_t nmemb, size_t size) |
|
void * | bsearch (const void *key, const void *array, size_t count, size_t size, int(*cmp)(const void *key, const void *element)) |
|
static void | exit (int status) |
|
void | abort (void) |
|
static int | abs (int __n) |
|
static long | labs (long __n) |
|
static long long | llabs (long long __n) |
|
◆ EXIT_FAILURE
◆ EXIT_SUCCESS
◆ abort()
◆ abs()
static int abs |
( |
int |
__n | ) |
|
|
inlinestatic |
◆ atoi()
int atoi |
( |
const char * |
s | ) |
|
◆ bsearch()
void * bsearch |
( |
const void * |
key, |
|
|
const void * |
array, |
|
|
size_t |
count, |
|
|
size_t |
size, |
|
|
int(*)(const void *key, const void *element) |
cmp |
|
) |
| |
◆ calloc()
void * calloc |
( |
size_t |
nmemb, |
|
|
size_t |
size |
|
) |
| |
◆ exit()
static void exit |
( |
int |
status | ) |
|
|
inlinestatic |
◆ free()
◆ labs()
static long labs |
( |
long |
__n | ) |
|
|
inlinestatic |
◆ llabs()
static long long llabs |
( |
long long |
__n | ) |
|
|
inlinestatic |
◆ malloc()
void * malloc |
( |
size_t |
size | ) |
|
◆ realloc()
void * realloc |
( |
void * |
ptr, |
|
|
size_t |
size |
|
) |
| |
◆ reallocarray()
void * reallocarray |
( |
void * |
ptr, |
|
|
size_t |
nmemb, |
|
|
size_t |
size |
|
) |
| |
◆ strtol()
long strtol |
( |
const char * |
nptr, |
|
|
char ** |
endptr, |
|
|
int |
base |
|
) |
| |
◆ strtoul()
unsigned long strtoul |
( |
const char * |
nptr, |
|
|
char ** |
endptr, |
|
|
int |
base |
|
) |
| |