Searched defs:islower (Results 1 – 10 of 10) sorted by relevance
51 int (islower)(int); variable
52 #define islower(ch) ((ch) >= 'a' && (ch) <= 'z') macro
61 islower(int c) in islower() function
61 #define islower(c) ((__ismask(c)&(_L)) != 0) macro
114 islower(int c) in islower() function
180 #define islower(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO)) macro
92 #define islower(c) __sbistype((c), _CTYPE_L) macro
227 static __inline int islower(int c) islower() function
141 # define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z')) macro