Searched refs:isspace (Results 1 – 7 of 7) sorted by relevance
23 int isspace(int c);
119 #define isspace(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == … macro207 if (c != '\0' && !isspace(c)) { in ipaddr_aton()
14 int isspace(int c) { in isspace() function
58 } while (isspace(c)); in strtol()
59 } while (isspace(c)); in strtoll()
112 while (isspace(*nptr)) { in strtoul()
414 if (isspace(c)) in tokenize_command()429 } else if (!isspace(c)) { in tokenize_command()455 if (isspace(c) || c == ';') { in tokenize_command()507 if (c == '\0' || isspace(c) || c == ';') { in tokenize_command()
Completed in 6 milliseconds