Searched defs:TOLOWER (Results 1 – 3 of 3) sorted by relevance
48 #define TOLOWER(c) (islower(c) ? c : \ macro
226 #define TOLOWER(c) (isascii(c) && isupper(c) ? _tolower(c) : c) macro229 #define TOLOWER(c) (isascii(c) && isupper(c) ? tolower(c) : c) macro
1701 #define TOLOWER(x) tolower((u_char)(x)) macro