Searched refs:TOLOWER (Results 1 – 5 of 5) sorted by relevance
48 #define TOLOWER(c) (islower(c) ? c : \ macro58 c1 = TOLOWER(c1) - 'a';59 c2 = TOLOWER(c2) - 'a';
207 if (!ISALPHA(c) || (TOLOWER(c) != 'o' && TOLOWER(c) != 'i')) {211 *out = (TOLOWER(c) == 'o') ? 1 : 0;
226 #define TOLOWER(c) (isascii(c) && isupper(c) ? _tolower(c) : c) macro229 #define TOLOWER(c) (isascii(c) && isupper(c) ? tolower(c) : c) macro
1568 c = TOLOWER(c);
1701 #define TOLOWER(x) tolower((u_char)(x)) macro