Lines Matching defs:Ch
240 # define TOUPPER(Ch, L) __towupper_l (Ch, L) argument
241 # define TOLOWER(Ch, L) __towlower_l (Ch, L) argument
243 # define TOUPPER(Ch, L) towupper (Ch) argument
244 # define TOLOWER(Ch, L) towlower (Ch) argument
249 # define TOUPPER(Ch, L) __toupper_l (Ch, L) argument
250 # define TOLOWER(Ch, L) __tolower_l (Ch, L) argument
252 # define TOUPPER(Ch, L) toupper (Ch) argument
253 # define TOLOWER(Ch, L) tolower (Ch) argument
256 # define TOUPPER(Ch, L) (islower (Ch) ? toupper (Ch) : (Ch)) argument
257 # define TOLOWER(Ch, L) (isupper (Ch) ? tolower (Ch) : (Ch)) argument
264 #define ISDIGIT(Ch) ((unsigned int) (Ch) - L_('0') <= 9) argument