islower
#define islower(c) __sbistype((c), _CTYPE_L)
static __inline int islower(int c)
islower(int c)
islower(int c)
#define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z'))
#define islower(ch) ((ch) >= 'a' && (ch) <= 'z')
#undef islower
#define islower(c) ((__ctype + 1)[c] & _L)
#define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z'))
islower(char c)
#define islower(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO))