#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
#include <unistd.h>
#include <ctype.h>
#include <errno.h>
Go to the source code of this file.
|
| int | atoi (const char *nptr) |
| |
| long | atol (const char *nptr) |
| |
| long long | atoll (const char *nptr) |
| |
| long long | atoq (const char *nptr) |
| |
| char * | getenv (const char *name) |
| |
| int | setenv (const char *name, const char *value, int overwrite) |
| |
| long int | strtol (const char *nptr, char **endptr, int base) |
| |
| long long int | strtoll (const char *nptr, char **endptr, int base) |
| |
| unsigned long int | strtoul (const char *nptr, char **endptr, int base) |
| |
| unsigned long long int | strtoull (const char *nptr, char **endptr, int base) |
| |