Symbol: is_digit
bin/sh/eval.c
1245
if (!is_digit(argv[1][0]) || *end != '\0')
bin/sh/expand.c
1009
if (is_digit(*name)) {
bin/sh/expand.c
853
} else if (is_digit(*name)) {
bin/sh/jobs.c
665
if (is_digit(name[1])) {
bin/sh/miscbltin.c
406
if (is_digit(*ap)) {
bin/sh/mystring.c
94
if (! is_digit(*q))
bin/sh/parser.c
1600
&& (*out == '\0' || is_digit(*out))) {
bin/sh/parser.c
1675
} else if (is_digit(c)) {
bin/sh/parser.c
1680
} while (is_digit(c));
bin/sh/parser.c
739
if (is_digit(text[0]) && text[1] == '\0')
games/larn/data.c
581
char is_digit[] = /* isdigit[character] = TRUE || FALSE */
games/larn/header.h
334
extern char *inbuffer, is_alpha[], is_digit[];
games/larn/header.h
620
#define isdigit(x) (is_digit[x])
games/rogue/play.c
232
} while (is_digit(ch));
games/rogue/rogue.h
522
boolean is_digit(short);
lib/libc/stdio/printf-pos.c
189
while (is_digit(*cp)) {
lib/libc/stdio/printf-pos.c
215
while (is_digit(*cp)) {
lib/libc/stdio/printf-pos.c
285
while (is_digit(ch)) {
lib/libc/stdio/printf-pos.c
297
} while (is_digit(ch));
lib/libc/stdio/printf-pos.c
473
while (is_digit(ch)) {
lib/libc/stdio/printf-pos.c
485
} while (is_digit(ch));
lib/libc/stdio/vfprintf.c
426
while (is_digit(*cp)) { \
lib/libc/stdio/vfprintf.c
540
while (is_digit(ch)) {
lib/libc/stdio/vfprintf.c
559
} while (is_digit(ch));
lib/libc/stdio/vfwprintf.c
503
while (is_digit(*cp)) { \
lib/libc/stdio/vfwprintf.c
608
while (is_digit(ch)) {
lib/libc/stdio/vfwprintf.c
627
} while (is_digit(ch));
lib/libc/stdio/xprintf.c
328
while (*fmt != '\0' && is_digit(*fmt)) {
lib/libc/stdio/xprintf.c
367
while (*fmt != '\0' && is_digit(*fmt)) {
lib/libc/stdtime/localtime.c
668
while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
lib/libc/stdtime/localtime.c
706
if (strp == NULL || !is_digit(c = *strp))
lib/libc/stdtime/localtime.c
714
} while (is_digit(c));
lib/libc/stdtime/localtime.c
821
} else if (is_digit(*strp)) {
usr.sbin/zic/scheck.c
37
if (is_digit(*fp)) {
usr.sbin/zic/scheck.c
42
} while (is_digit(c));