Searched defs:IS_DIGIT (Results 1 – 8 of 8) sorted by relevance
31 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
51 #define IS_DIGIT(c) \ macro
36 #define IS_DIGIT(x) ((x) >= '0' && (x) <= '9') macro
176 #define IS_DIGIT(c) isdigit((unsigned char)(c)) macro178 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
211 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro