TOUPPER
#define TOUPPER(c) (isascii(c) && islower(c) ? _toupper(c) : c)
#define TOUPPER(c) (isascii(c) && islower(c) ? toupper(c) : c)
#define TOUPPER(x) toupper((u_char)(x))