Home | History | Annotate | Download | only in lib

Lines Matching refs:Ch

201 # define L_(Ch) L##Ch
205 # define ISSPACE(Ch) __iswspace_l ((Ch), loc)
206 # define ISALPHA(Ch) __iswalpha_l ((Ch), loc)
207 # define TOUPPER(Ch) __towupper_l ((Ch), loc)
209 # define ISSPACE(Ch) iswspace (Ch)
210 # define ISALPHA(Ch) iswalpha (Ch)
211 # define TOUPPER(Ch) towupper (Ch)
219 # define L_(Ch) Ch
223 # define ISSPACE(Ch) __isspace_l ((Ch), loc)
224 # define ISALPHA(Ch) __isalpha_l ((Ch), loc)
225 # define TOUPPER(Ch) __toupper_l ((Ch), loc)
227 # define ISSPACE(Ch) (IN_CTYPE_DOMAIN (Ch) && isspace (Ch))
228 # define ISALPHA(Ch) (IN_CTYPE_DOMAIN (Ch) && isalpha (Ch))
229 # define TOUPPER(Ch) (IN_CTYPE_DOMAIN (Ch) ? toupper (Ch) : (Ch))