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