blob: 28496d7ae333e1e3bdfbd1e14ccce5791d58f27d [file] [log] [blame]
Nikos Nikolerisb5501ed2021-03-18 18:07:24 +00001/*
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
10long int strtol(const char *nptr, char **endptr, int base);
11unsigned long int strtoul(const char *nptr, char **endptr, int base);
Andrew Jones7f1ca262021-10-13 18:42:59 +020012long long int strtoll(const char *nptr, char **endptr, int base);
13unsigned long long int strtoull(const char *nptr, char **endptr, int base);
Nikos Nikolerisb5501ed2021-03-18 18:07:24 +000014
15#endif /* _STDLIB_H_ */