toupper
#define toupper(c) __sbtoupper(c)
static __inline int toupper(int c)
#define toupper(c) (islower(c) ? _toupper(c) : (c))
#define toupper(c) (islower(c) ? _toupper(c) : (c))
toupper (
#define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x))
#undef toupper
toupper(int c)
#define toupper(c) (islower(c) ? _toupper(c) : (c))
toupper(int c)
#define toupper(C) (((C) >= 'a' && (C) <= 'z')? (C) - 'a' + 'A': (C))
#define toupper(C) (((C) >= 'a' && (C) <= 'z') ? (C) - 'a' + 'A': (C))
#define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A')
#undef toupper
#define toupper(C) (((C) >= 'a' && (C) <= 'z')? (C) - 'a' + 'A': (C))
#define toupper(C) (((C) >= 'a' && (C) <= 'z') ? (C) - 'a' + 'A' : (C))
#define toupper(C) (((C) >= 'a' && (C) <= 'z')? ((C) - 'a' + 'A'): (C))
#define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x))