toupper
#define toupper(x) (to_upper[x])
#define toupper(c) __sbtoupper(c)
#undef toupper
toupper(int c)
toupper(int c)
#define toupper(c) ((c) - 0x20 * (((c) >= 'a') && ((c) <= 'z')))