islower
#define islower(c) __sbistype((c), _CTYPE_L)
#undef islower
islower(int c)
static __inline int islower(int c)
# define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z'))
islower(int c)