toupper
__only_inline int toupper(int _c)
#undef toupper
toupper(int c)
#define toupper(c) ((c) - ' ' * (((c) >= 'a') && ((c) <= 'z')))
#define toupper(c) ((c) - 'a' + 'A')
#define toupper(c) (islower(c)?((c) - 'a' + 'A'):(c))