Home
last modified time | relevance | path

Searched refs:TO_LOWER (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/less/
H A Dless.h137 #undef TO_LOWER
145 #define TO_LOWER(c) towlower((wint_t) (c))
151 #define TO_LOWER(c) (is_ascii_char(c) ? tolower((unsigned char) (c)) : (c))
156 #define TO_LOWER(c) (is_ascii_char(c) ? ASCII_TO_LOWER(c) : (c))
152 #define TO_LOWER( global() macro
158 #define TO_LOWER( global() macro
163 #define TO_LOWER(c) ASCII_TO_LOWER( global() macro
H A Dcvt.c94 ch = TO_LOWER(ch); in cvt_text()