_M_ISUPPER
#define _M_ISUPPER(c) (((c) >= 0) && ((c) < 256) && isupper((c)))
#define _M_ISUPPER(c) isupper((c))