Searched refs:LOWERCASE (Results 1 – 3 of 3) sorted by relevance
49 #define LOWERCASE(c) ((isalpha(UChar(c)) && isupper(UChar(c))) ? tolower(UChar(c)) : (c)) macro63 *s = (char) LOWERCASE(*s); in NCURSES_EXPORT()
172 #define LOWERCASE(c) ((isalpha(UChar(c)) && isupper(UChar(c))) ? tolower(UChar(c)) : (c)) macro178 int cmp = LOWERCASE(*a) - LOWERCASE(*b); in CaselessCmp()183 return LOWERCASE(*a) - LOWERCASE(*b); in CaselessCmp()
241 #define LOWERCASE "abcdefghijklmnopqrstuvwxyz" macro244 #define PROPNODECHARS LOWERCASE UPPERCASE DIGITS ",._+*#?-"245 #define PROPNODECHARSSTRICT LOWERCASE UPPERCASE DIGITS ",-"