calculator/include/stdlib.h
2018-02-27 23:55:46 -05:00

9 lines
197 B
C

#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_