2024-09-01 14:56:38 +08:00
|
|
|
#ifndef CRASHPOWEROS_STDLIB_H
|
|
|
|
#define CRASHPOWEROS_STDLIB_H
|
|
|
|
|
2024-09-01 16:43:58 +08:00
|
|
|
#include "ctype.h"
|
2024-09-01 14:56:38 +08:00
|
|
|
|
|
|
|
long long atoi(const char* s);
|
|
|
|
void *malloc(size_t size);
|
|
|
|
void free(void *ptr);
|
|
|
|
void exit(int code);
|
|
|
|
void *realloc(void *ptr, uint32_t size);
|
|
|
|
|
|
|
|
#endif
|