Searched defs:ISLOWER (Results 1 – 3 of 3) sorted by relevance
42 #define ISLOWER(x) (((x) >= 'a') && ((x) <= 'z')) macro
283 #define ISLOWER(x) (islower((int) ((unsigned char)x))) macro
152 #define ISLOWER(c) (isascii (c) && islower (c)) macro