Searched defs:isoctal (Results 1 – 8 of 8) sorted by relevance
82 #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7') macro
125 #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7') macro
108 #define isoctal(c) (ISDIGIT(c) && (c) != L('8') && (c) != L('9')) in v_increment() macro
76 #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7') macro
37 inline bool isoctal (utf8_t c) { return (cmtable[c] & CMoctal) != 0; } in isoctal() function
3090 private bool isoctal(const char c) pure @nogc @safe in isoctal() function
197 #define isoctal(c) ((unsigned) ((c) - '0') < 8) macro