Searched defs:IS_DIGIT (Results 1 – 5 of 5) sorted by relevance
52 #define IS_DIGIT(c) \ macro
31 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
35 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
165 #define IS_DIGIT(c) isdigit((unsigned char)(c)) macro167 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
208 #define IS_DIGIT(string) IS_DIGIT_AT((string),0) macro