Lines Matching defs:Ch
243 # define TOUPPER(Ch, L) __towupper_l (Ch, L) argument
244 # define TOLOWER(Ch, L) __towlower_l (Ch, L) argument
246 # define TOUPPER(Ch, L) towupper (Ch) argument
247 # define TOLOWER(Ch, L) towlower (Ch) argument
252 # define TOUPPER(Ch, L) __toupper_l (Ch, L) argument
253 # define TOLOWER(Ch, L) __tolower_l (Ch, L) argument
255 # define TOUPPER(Ch, L) toupper (Ch) argument
256 # define TOLOWER(Ch, L) tolower (Ch) argument
259 # define TOUPPER(Ch, L) (islower (Ch) ? toupper (Ch) : (Ch)) argument
260 # define TOLOWER(Ch, L) (isupper (Ch) ? tolower (Ch) : (Ch)) argument
267 #define ISDIGIT(Ch) ((unsigned int) (Ch) - L_('0') <= 9) argument