Home | History | Annotate | Download | only in lib

Lines Matching refs:Ch

192 # define L_(Ch) L##Ch
196 # define ISSPACE(Ch) __iswspace_l ((Ch), loc)
197 # define ISALPHA(Ch) __iswalpha_l ((Ch), loc)
198 # define TOUPPER(Ch) __towupper_l ((Ch), loc)
200 # define ISSPACE(Ch) iswspace (Ch)
201 # define ISALPHA(Ch) iswalpha (Ch)
202 # define TOUPPER(Ch) towupper (Ch)
205 # define L_(Ch) Ch
209 # define ISSPACE(Ch) __isspace_l ((Ch), loc)
210 # define ISALPHA(Ch) __isalpha_l ((Ch), loc)
211 # define TOUPPER(Ch) __toupper_l ((Ch), loc)
213 # define ISSPACE(Ch) isspace (Ch)
214 # define ISALPHA(Ch) isalpha (Ch)
215 # define TOUPPER(Ch) toupper (Ch)