mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
20 lines
396 B
C
20 lines
396 B
C
#include <stddef.h>
|
|
|
|
void *malloc(size_t size);
|
|
|
|
void *aligned_alloc(size_t alignment, size_t size);
|
|
|
|
void free(void *);
|
|
|
|
void *realloc(void *, size_t);
|
|
|
|
void qsort(void* base, size_t num, size_t size, int (*compare)(const void*, const void*));
|
|
|
|
int atoi(const char *);
|
|
long atol(const char *);
|
|
long long atoll(const char *);
|
|
|
|
double atof(const char *);
|
|
|
|
long strtol(const char *, char **, int);
|