aboutsummaryrefslogtreecommitdiffstats
path: root/include/stdlib.h
blob: c2658d6077e4aa6da2d212b5d69a939e3b347e9c (plain)
1
2
3
4
5
6
7
8
#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_