TOLOWER
#define TOLOWER(c) (isupper(c) ? tolower(c) : (c))
#define TOLOWER(x) tolower((u_char)(x))
#define TOLOWER(ch) (myctype[ch])