islower
#define islower(c) ('a' <= (c) && (c) <= 'z')
islower(int ch)
#define islower(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_L))