2018-10-24 12:43:52 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-10-31 02:09:11 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/types.h>
|
2018-10-24 12:43:52 +02:00
|
|
|
|
2018-10-31 02:09:11 +01:00
|
|
|
__BEGIN_DECLS
|
2018-10-24 12:43:52 +02:00
|
|
|
|
2018-11-17 15:56:09 +01:00
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
#define EXIT_FAILURE 1
|
2019-02-08 02:38:21 +01:00
|
|
|
#define MB_CUR_MAX 1
|
2018-11-17 15:56:09 +01:00
|
|
|
|
2019-02-15 22:37:20 +01:00
|
|
|
__attribute__((malloc)) __attribute__((alloc_size(1))) void* malloc(size_t);
|
|
|
|
__attribute__((malloc)) __attribute__((alloc_size(1, 2))) void* calloc(size_t nmemb, size_t);
|
2018-10-24 12:43:52 +02:00
|
|
|
void free(void*);
|
2019-02-15 12:38:49 +01:00
|
|
|
void* realloc(void *ptr, size_t);
|
2018-10-31 17:50:43 +01:00
|
|
|
char* getenv(const char* name);
|
|
|
|
int atoi(const char*);
|
2018-11-11 10:40:50 +01:00
|
|
|
long atol(const char*);
|
2019-02-25 10:05:32 +01:00
|
|
|
double strtod(const char*, char** endptr);
|
2019-02-24 15:19:32 +01:00
|
|
|
long strtol(const char*, char** endptr, int base);
|
|
|
|
unsigned long strtoul(const char*, char** endptr, int base);
|
2018-11-11 15:36:40 +01:00
|
|
|
void qsort(void* base, size_t nmemb, size_t size, int (*compar)(const void *, const void *));
|
2019-02-25 10:05:32 +01:00
|
|
|
int atexit(void (*function)());
|
2019-02-15 22:37:20 +01:00
|
|
|
__attribute__((noreturn)) void exit(int status);
|
|
|
|
__attribute__((noreturn)) void abort();
|
2019-01-15 06:30:19 +01:00
|
|
|
char* ptsname(int fd);
|
|
|
|
int ptsname_r(int fd, char* buffer, size_t);
|
2019-01-23 06:35:34 +01:00
|
|
|
int abs(int);
|
2019-02-25 10:05:32 +01:00
|
|
|
long labs(long);
|
|
|
|
double atof(const char*);
|
2019-02-03 04:32:31 +01:00
|
|
|
int system(const char* command);
|
2019-02-08 02:38:21 +01:00
|
|
|
char* mktemp(char*);
|
|
|
|
void* bsearch(const void* key, const void* base, size_t nmemb, size_t size, int (*compar)(const void *, const void *));
|
2018-10-24 12:43:52 +02:00
|
|
|
|
2019-01-14 15:25:34 +01:00
|
|
|
#define RAND_MAX 32767
|
|
|
|
int rand();
|
|
|
|
void srand(unsigned seed);
|
|
|
|
|
2019-02-01 16:03:21 +01:00
|
|
|
long int random();
|
|
|
|
void srandom(unsigned seed);
|
|
|
|
|
2019-02-05 13:38:32 +01:00
|
|
|
typedef struct { int quot; int rem; } div_t;
|
|
|
|
div_t div(int, int);
|
|
|
|
typedef struct { long quot; long rem; } ldiv_t;
|
|
|
|
ldiv_t ldiv(long, long);
|
|
|
|
|
2018-10-31 02:09:11 +01:00
|
|
|
__END_DECLS
|
2018-10-24 12:43:52 +02:00
|
|
|
|