Searched refs:ISDIGIT (Results 1 – 8 of 8) sorted by relevance
48 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) macro103 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0)); in __strverscmp()110 state |= (c1 == '0') + (ISDIGIT (c1) != 0); in __strverscmp()113 state = result_type[state << 2 | ((c2 == '0') + (ISDIGIT (c2) != 0))]; in __strverscmp()121 while (ISDIGIT (*p1++)) in __strverscmp()122 if (!ISDIGIT (*p2++)) in __strverscmp()125 return ISDIGIT (*p2) ? -1 : diff; in __strverscmp()
79 # define ISDIGIT(c) (ISASCII (c) && isdigit (c)) macro380 || (STREQ (str, "digit") && ISDIGIT ((unsigned char) *n))
154 #define ISDIGIT(c) (ISASCII (c) && isdigit (c)) macro
284 while (ISDIGIT(ch))807 else if (posixicity == POSIXLY_BASIC && !ISDIGIT (*p))992 else if (ISDIGIT(ch))1215 if (ISDIGIT(ch) && posixicity != POSIXLY_BASIC)
304 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9) macro
2498 for (cp=argv[optind]; ISDIGIT (cp[0]); ++cp) in decode_switches()2513 for (cp = optarg; ISDIGIT (cp[0]); ++cp) in decode_switches()2533 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.')) in decode_switches()
235 && (*name < 'A' || *name > 'Z') && !ISDIGIT(*name)) in define_variable_in_set()
742 if (!ISDIGIT (*s)) /* ISDIGIT only evals its arg once: see make.h. */ in check_numeric()