Searched defs:isASCIILower (Results 1 – 1 of 1) sorted by relevance
89 inline bool isASCIILower(char c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function90 inline bool isASCIILower(unsigned short c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function92 inline bool isASCIILower(wchar_t c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function94 inline bool isASCIILower(int c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function