Searched defs:is_digit (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/zic/
H A Dprivate.h47 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
/illumos-gate/usr/src/cmd/sgs/m4/common/
H A Dm4.h77 #define is_digit(x) (!is_builtin(x) && iswascii(x) && isdigit(x)) macro
/illumos-gate/usr/src/tools/ndrgen/
H A Dndr_lex.c72 #define is_digit(c) is_between((c), '0', '9') macro
74 #define is_sfollow(c) (is_sstart(c) || is_digit(c))
76 (is_digit(c) || is_between((c), 'A', 'F') || is_between((c), 'a', 'f'))
278 if (is_digit(c)) {
296 } while (is_digit(c));
303 while (is_digit(c)) {
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dvfprintf.c147 #define is_digit(c) ((unsigned) to_digit(c) <= 9) macro
275 while (is_digit(*cp)) \
409 while (is_digit(ch))
444 } while (is_digit(ch));
864 while (is_digit(*cp)) \
917 while (is_digit(ch))
931 } while (is_digit(ch));
/illumos-gate/usr/src/lib/efcode/engine/
H A Dforth.c1041 is_digit(char digit, int num_base, fstack_t *dptr) function
1090 error = is_digit(*buf++, env->num_base, &digit);
1110 if (is_digit(TOS, base, &value))
/illumos-gate/usr/src/lib/libtecla/common/
H A Dgetline.c6760 int is_digit = isdigit((int)(unsigned char) count); local
6769 if(gl->number < 0 || !is_digit)
6774 if(is_digit) {

Completed in 83 milliseconds