8long long int atoll(
const char* nptr)
10 long long int result = 0;
11 bool isNegative =
false;
13 while (
isspace((
unsigned char)*nptr))
22 else if (*nptr ==
'-')
31 result = result * 10 + (
x -
_digits);
34 return isNegative ? -result : result;
long long int atoll(const char *nptr)
_PUBLIC int tolower(int c)
_PUBLIC int isspace(int c)
#define NULL
Pointer error value.
_PUBLIC void * memchr(const void *s, int c, size_t n)