Searched defs:IS_LOWER (Results 1 – 6 of 6) sorted by relevance
143 #define IS_LOWER(c) iswlower((wint_t) (c)) macro149 #define IS_LOWER(c) (is_ascii_char(c) && islower((unsigned char) (c))) macro154 #define IS_LOWER(c) (is_ascii_char(c) && ASCII_IS_LOWER(c)) macro
203 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro
207 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro
213 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro