Searched refs:IS_OCTAL_DIGIT (Results 1 – 3 of 3) sorted by relevance
326 #define IS_OCTAL_DIGIT(c) (((c) >= '0') && ((c) <= '7')) macro370 if ( IS_OCTAL_DIGIT(p[1]) ) in UnescapeCEscapeSequences()372 if ( IS_OCTAL_DIGIT(p[1]) ) // safe (and easy) to do this twice in UnescapeCEscapeSequences()
335 #define IS_OCTAL_DIGIT( c ) ( '0' <= (c) && (c) <= '7' ) macro389 if ( !IS_OCTAL_DIGIT( *cur ) ) in skip_literal_string()
7707 * src/psaux/psobjs.c (IS_OCTAL_DIGIT): New macro.