Searched refs:is_octal_digit (Results 1 – 1 of 1) sorted by relevance
75 inline bool is_octal_digit(unsigned char c) { return c >= '0' && c <= '7'; } in is_octal_digit() function169 if (p < last_byte && is_octal_digit(p[1])) ch = ch * 8 + *++p - '0'; in CUnescapeInternal()170 if (p < last_byte && is_octal_digit(p[1])) in CUnescapeInternal()