ISUPPER
#define ISUPPER(x) isupper((u_char)(x))
#define ISUPPER(ch) ((ch) >= 'A' && (ch) <= 'Z')
#define ISUPPER(_c) \