Searched defs:isASCIILower (Results 1 – 1 of 1) sorted by relevance
94 inline bool isASCIILower(char c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function95 inline bool isASCIILower(unsigned short c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function97 inline bool isASCIILower(wchar_t c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function99 inline bool isASCIILower(int c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function100 inline bool isASCIILower(unsigned c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function