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

  /src/games/rogue/
message.c 354 is_digit(int ch) function in typeref:typename:boolean
  /src/bin/sh/
syntax.h 82 #define is_digit(c) ((unsigned)((c) - '0') <= 9) macro
  /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 17 milliseconds