Symbol: is_digit
bin/sh/arith_token.c
83
if (is_digit(token)) {
bin/sh/expand.c
1168
} else if (is_digit(*name)) {
bin/sh/expand.c
1320
if (is_digit(*name)) {
bin/sh/miscbltin.c
510
if (is_digit(*ap)) {
bin/sh/mystring.c
120
if (!is_digit(*s) || ((n = strtoimax(s, &ep, 10)),
bin/sh/mystring.c
138
if (! is_digit(*p))
bin/sh/mystring.c
164
is_digit(*s) || atoi(s) != 0)
bin/sh/options.c
540
if (is_digit(*value) && strtol(value, NULL, 10) == 1) {
bin/sh/output.c
461
while (is_digit(*f)) {
bin/sh/output.c
471
while (is_digit(*f)) {
bin/sh/parser.c
2247
else if (is_name(c) || is_digit(c))
bin/sh/parser.c
2291
} else if (is_digit(c)) {
bin/sh/parser.c
2296
} while (subtype != VSNORMAL && is_digit(c));
games/rogue/play.c
240
} while (is_digit(ch));
games/rogue/rogue.h
524
boolean is_digit(int);
lib/libc/stdio/vfwprintf.c
1609
while (is_digit(*cp)) { \
lib/libc/stdio/vfwprintf.c
1659
while (is_digit(ch)) {
lib/libc/stdio/vfwprintf.c
1671
} while (is_digit(ch));
lib/libc/stdio/vfwprintf.c
800
while (is_digit(*cp)) { \
lib/libc/stdio/vfwprintf.c
939
while (is_digit(ch)) {
lib/libc/stdio/vfwprintf.c
958
} while (is_digit(ch));
lib/libc/stdio/vsnprintf_ss.c
220
while (is_digit(ch)) {
lib/libc/stdio/vsnprintf_ss.c
240
} while (is_digit(ch));
lib/libc/time/localtime.c
1472
while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
lib/libc/time/localtime.c
1511
if (strp == NULL || !is_digit(c = *strp)) {
lib/libc/time/localtime.c
1523
} while (is_digit(c));
lib/libc/time/localtime.c
1634
} else if (is_digit(*strp)) {
lib/libc/time/zdump.c
332
while (is_alpha(*cp) || is_digit(*cp) || *cp == '-' || *cp == '+')
lib/libc/time/zic.c
2114
ok = is_digit(xr);
lib/libc/time/zic.c
4245
while (is_alpha(*cp) || is_digit(*cp)
sys/kern/subr_prf.c
1343
while (is_digit(ch)) {
sys/kern/subr_prf.c
1363
} while (is_digit(ch));