Searched refs:isdigit (Results 1 – 6 of 6) sorted by relevance
26 int isdigit(int c) { in isdigit() function35 return isalpha(c) || isdigit(c); in isalnum()39 return isdigit(c) || ((c >= 'a') && (c <= 'f')) || ((c >= 'A') && (c <= 'F')); in isxdigit()
61 while (*num && isdigit(*num)) in atol()80 while (*num && isdigit(*num)) in atoul()96 while (*num && isdigit(*num)) in atoull()
104 if (isdigit(c)) in strtol()
106 if (isdigit(c)) in strtoll()
116 #define isdigit(c) in_range(c, '0', '9') macro117 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))167 if (!isdigit(c)) in ipaddr_aton()180 if (isdigit(c)) { in ipaddr_aton()
18 int isdigit(int c);
Completed in 4 milliseconds