HomeSort by: relevance | last modified time | path
    Searched refs:is_digit (Results 1 - 15 of 15) sorted by relevancy

  /src/bin/sh/
mystring.c 120 if (!is_digit(*s) || ((n = strtoimax(s, &ep, 10)),
138 if (! is_digit(*p))
164 is_digit(*s) || atoi(s) != 0)
syntax.h 82 #define is_digit(c) ((unsigned)((c) - '0') <= 9) macro
options.c 540 if (is_digit(*value) && strtol(value, NULL, 10) == 1) {
miscbltin.c 489 if (is_digit(*ap)) {
parser.c 2313 } else if (is_digit(c)) {
2318 } while (subtype != VSNORMAL && is_digit(c));
expand.c 1172 } else if (is_digit(*name)) {
1305 if (is_digit(*name)) {
jobs.c 2071 while (is_digit(*p))
  /src/games/rogue/
play.c 240 } while (is_digit(ch));
message.c 354 is_digit(int ch) function in typeref:typename:boolean
rogue.h 524 boolean is_digit(int);
  /src/lib/libc/stdio/
vsnprintf_ss.c 73 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro
220 while (is_digit(ch)) {
240 } while (is_digit(ch));
vfwprintf.c 252 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro
800 while (is_digit(*cp)) { \
939 while (is_digit(ch)) {
958 } while (is_digit(ch));
1609 while (is_digit(*cp)) { \
1659 while (is_digit(ch)) {
1671 } while (is_digit(ch));
  /src/sys/kern/
subr_prf.c 1186 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro
1343 while (is_digit(ch)) {
1363 } while (is_digit(ch));
  /src/lib/libc/time/
zdump.c 105 is_digit(char c) function in typeref:typename:bool
384 while (is_alpha(*cp) || is_digit(*cp) || *cp == '-' || *cp == '+')
localtime.c 959 is_digit(char c) function in typeref:typename:bool
975 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
1014 if (strp == NULL || !is_digit(c = *strp)) {
1026 } while (is_digit(c));
1137 } else if (is_digit(*strp)) {

Completed in 27 milliseconds