A2osX/INCLUDE/stdlib.h.txt

27 lines
554 B
Plaintext
Raw Normal View History

2020-08-02 14:19:43 +02:00
NEW
AUTO 3,1
void* fastcall malloc(int);
void* realloc(void*,int);
void fastcall free(void*);
2021-05-30 22:34:03 +02:00
2020-08-02 14:19:43 +02: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 15:54:57 +01:00
long fastcall atol(const char*);
int fastcall atoi(const char*);
2020-08-02 14:19:43 +02:00
2021-05-14 22:58:20 +02:00
char* realpath(const char*,char*);
char* expand(const char*,char*);
2020-08-02 14:19:43 +02:00
int setenv(const char*,const char*);
2021-05-14 22:58:20 +02:00
char* getenv(const char*, char*);
2020-08-02 14:19:43 +02:00
int putenv(char*);
int unsetenv(const char*);
MAN
TEXT include/stdlib.h