Searched refs:IS_DIGIT (Results 1 – 6 of 6) sorted by relevance
31 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro69 if (!IS_ALPHA(c) && !IS_DIGIT(c) && c != '_') in strident_canon()
35 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro73 if (!IS_ALPHA(c) && !IS_DIGIT(c) && c != '_') in strident_canon()
134 #undef IS_DIGIT162 #define IS_DIGIT(c) isdigit((unsigned char)(c)) macro164 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
728 if (!IS_DIGIT(*p)) in getentry()735 if (!IS_DIGIT(*p)) in getentry()
2220 while (IS_DIGIT(parser->buffer)) in yaml_parser_scan_version_directive_number()2783 if (IS_DIGIT(parser->buffer)) in yaml_parser_scan_block_scalar()2803 else if (IS_DIGIT(parser->buffer)) in yaml_parser_scan_block_scalar()
208 #define IS_DIGIT(string) IS_DIGIT_AT((string),0) macro