Nikos Nikoleris | b5501ed | 2021-03-18 18:07:24 +0000 | [diff] [blame] | 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); |
Andrew Jones | 7f1ca26 | 2021-10-13 18:42:59 +0200 | [diff] [blame] | 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); |
Nikos Nikoleris | b5501ed | 2021-03-18 18:07:24 +0000 | [diff] [blame] | 14 | |
| 15 | #endif /* _STDLIB_H_ */ |