TOLOWER
#define TOLOWER(c) ((c)|0x20)
#define TOLOWER(c) (tolower((unsigned char)(c)))
#define TOLOWER(c) ((c)+0x20)