Searched defs:isASCIIOctalDigit (Results 1 – 1 of 1) sorted by relevance
82 inline bool isASCIIOctalDigit(char c) { return (c >= '0') & (c <= '7'); } in isASCIIOctalDigit() function83 inline bool isASCIIOctalDigit(unsigned short c) { return (c >= '0') & (c <= '7'); } in isASCIIOctalDigit() function85 inline bool isASCIIOctalDigit(wchar_t c) { return (c >= '0') & (c <= '7'); } in isASCIIOctalDigit() function87 inline bool isASCIIOctalDigit(int c) { return (c >= '0') & (c <= '7'); } in isASCIIOctalDigit() function