A2osX/INCLUDE/stdlib.h.txt

27 lines
554 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

NEW
AUTO 3,1
void* fastcall malloc(int);
void* realloc(void*,int);
void fastcall free(void*);
float strtof(const char*,char**);
float atof(const char*);
long strtol(const char*,char**,int);
unsigned long strtoul(const char*,char**,int);
long fastcall atol(const char*);
int fastcall atoi(const char*);
char* realpath(const char*,char*);
char* expand(const char*,char*);
int setenv(const char*,const char*);
char* getenv(const char*, char*);
int putenv(char*);
int unsetenv(const char*);
MAN
TEXT include/stdlib.h