_toupper
_toupper(int c)
#define _toupper(c) (islower(c) ? ((c) - 'a' + 'A') : (c))
#define _toupper(c) ((c) - 'a' + 'A')