1 /* 2 * Header for libc stdlib functions 3 * 4 * This code is free software; you can redistribute it and/or modify it 5 * under the terms of the GNU Library General Public License version 2. 6 */ 7 #ifndef _STDLIB_H_ 8 #define _STDLIB_H_ 9 10 long int strtol(const char *nptr, char **endptr, int base); 11 unsigned long int strtoul(const char *nptr, char **endptr, int base); 12 long long int strtoll(const char *nptr, char **endptr, int base); 13 unsigned long long int strtoull(const char *nptr, char **endptr, int base); 14 15 #endif /* _STDLIB_H_ */ 16