Searched defs:isASCIIAlpha (Results 1 – 2 of 2) sorted by relevance
45 inline bool isASCIIAlpha(char ch) { return (ch | 0x20) >= 'a' && (ch | 0x20) <= 'z'; } in isASCIIAlpha() function
51 template<typename CharType> inline bool isASCIIAlpha(CharType c) in isASCIIAlpha() function