You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
197 B
C
9 lines
197 B
C
7 years ago
|
#ifndef STDLIB_H_
|
||
|
#define STDLIB_H_
|
||
|
|
||
|
char *snprintf(char *buf, unsigned int max, const char *format, ...);
|
||
|
float strtof(const char *s, char **endptr);
|
||
|
int atoi(const char *s);
|
||
|
|
||
|
#endif // STDLIB_H_
|