toupper
#define toupper(c) __sbtoupper(c)
#undef toupper
toupper(int c)
static __inline int toupper(int c)
# define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A')
toupper(int c)