Searched refs:isdigit (Results 1 – 25 of 84) sorted by relevance
1234
42 #undef isdigit43 #define isdigit(a) ((unsigned)((a) - '0') <= 9) macro89 state = S_N | ((c1 == '0') + (isdigit (c1) != 0)); in strverscmp()96 state |= (c1 == '0') + (isdigit (c1) != 0); in strverscmp()99 state = result_type[state << 2 | (((c2 == '0') + (isdigit (c2) != 0)))]; in strverscmp()107 while (isdigit (*p1++)) in strverscmp()108 if (!isdigit (*p2++)) in strverscmp()111 return isdigit (*p2) ? -1 : diff; in strverscmp()
136 # define __isdigit(c) __body(isdigit,c)159 # define isdigit(c) __isdigit(c) macro183 # define isdigit(c) __C_isdigit(c)
236 #define IS_X_DIGIT(C) isdigit((C)) in __XL_NPP()277 + (isdigit(*pos) in __XL_NPP()291 + (isdigit(*pos) in __XL_NPP()396 while (isdigit(*pos)) { /* Process string of digits. */ in __XL_NPP()
109 if (isdigit ('\0')) in main()172 if (isdigit (*cp)) in main()175 if (isdigit (*cp)) in main()178 if (! isdigit (*cp)) in main()181 if (isdigit (*cp)) in main()
57 if (!isdigit(*cp)) in inet_aton()61 while (isdigit(*cp)) { in inet_aton()
5 isdigit
100 TEST( isdigit(c)!=0); in main()107 TEST( isdigit(c)==0); in main()
388 if (isdigit(*p1) && isdigit(*p2)) { in libcmp()395 } else if (isdigit(*p1) && !isdigit(*p2)) in libcmp()397 else if (!isdigit(*p1) && isdigit(*p2)) in libcmp()
38 using std::isdigit;
51 #undef isdigit67 using ::isdigit;
Completed in 16 milliseconds