Searched defs:S2I_valid (Results 1 - 1 of 1) sorted by relevance

/ast/src/lib/libast/string/
H A Dstrtoi.h115 #define S2I_valid(s) ((s)<(z)) macro
117 #define S2I_valid(s) 1 macro
269 while (S2I_valid(s) && isspace(*s))
271 if ((negative = S2I_valid(s) && (*s == '-')) || S2I_valid(s) && *s == '+')
278 if (S2I_valid(p) && (c = *p++) >= '0' && c <= '9')
281 if (S2I_valid(p) && (c = *p) >= '0' && c <= '9')
286 if (S2I_valid(p) && *p == '#')
296 else if (S2I_valid(s) && *s == '0' && S2I_valid(
[all...]

Completed in 10 milliseconds