A2osX/INCLUDE/stdlib.h.txt

27 lines
554 B
Plaintext
Raw Normal View History

2020-08-02 12:19:43 +00:00
NEW
AUTO 3,1
void* fastcall malloc(int);
void* realloc(void*,int);
void fastcall free(void*);
2021-05-30 20:34:03 +00:00
2020-08-02 12:19:43 +00:00
float strtof(const char*,char**);
float atof(const char*);
long strtol(const char*,char**,int);
unsigned long strtoul(const char*,char**,int);
2020-12-23 14:54:57 +00:00
long fastcall atol(const char*);
int fastcall atoi(const char*);
2020-08-02 12:19:43 +00:00
2021-05-14 20:58:20 +00:00
char* realpath(const char*,char*);
char* expand(const char*,char*);
2020-08-02 12:19:43 +00:00
int setenv(const char*,const char*);
2021-05-14 20:58:20 +00:00
char* getenv(const char*, char*);
2020-08-02 12:19:43 +00:00
int putenv(char*);
int unsetenv(const char*);
MAN
TEXT include/stdlib.h