Searched defs:isASCIIUpper (Results 1 – 1 of 1) sorted by relevance
102 inline bool isASCIIUpper(char c) { return c >= 'A' && c <= 'Z'; } in isASCIIUpper() function103 inline bool isASCIIUpper(unsigned short c) { return c >= 'A' && c <= 'Z'; } in isASCIIUpper() function105 inline bool isASCIIUpper(wchar_t c) { return c >= 'A' && c <= 'Z'; } in isASCIIUpper() function107 inline bool isASCIIUpper(int c) { return c >= 'A' && c <= 'Z'; } in isASCIIUpper() function108 inline bool isASCIIUpper(unsigned c) { return c >= 'A' && c <= 'Z'; } in isASCIIUpper() function