TOUPPER
# define TOUPPER(Ch) __towupper_l ((Ch), loc)
# define TOUPPER(Ch) towupper (Ch)
# define TOUPPER(Ch) __toupper_l ((Ch), loc)
# define TOUPPER(Ch) (IN_CTYPE_DOMAIN (Ch) ? toupper (Ch) : (Ch))