5 long long atoll(
const char* str)
26 val = (10 * val) + (*str++ -
'0');
28 return neg ? -val : val;
long long atoll(const char *str)
Interprets a Long Long value in a byte string pointed to by str.
int isspace(int ch)
Checks if the given character is a whitespace character.
int isdigit(int ch)
Checks if the given character is a numeric character.