Searched refs:ASCII_IS_LOWER (Results 1 – 7 of 7) sorted by relevance
267 #define ASCII_IS_LOWER(c) (c >= 0x61 && c <= 0x7A) macro287 return ASCII_IS_LOWER(a); in ossl_islower()307 return ASCII_IS_LOWER(a) ? c ^ case_change : c; in ossl_toupper()
125 #define ASCII_IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro149 #define IS_LOWER(c) (is_ascii_char(c) && ASCII_IS_LOWER(c))
184 lc = ASCII_IS_LOWER(optc); in scan_option()196 lc = ASCII_IS_LOWER(optname[0]); in scan_option()
834 if (ASCII_IS_LOWER(c)) in is_optchar()949 xbuf_add_char(&xbuf, uppercase && ASCII_IS_LOWER(*np) ? ASCII_TO_UPPER(*np) : *np); in findopts_name()
587 if (len == 0 && ASCII_IS_LOWER(c)) in sprefix()
460 opt_lower = ASCII_IS_LOWER(p[0]); in mca_opt_nonfirst_char()530 opt_lower = ASCII_IS_LOWER(c); in mca_opt_char()
1399 if (uc && ASCII_IS_LOWER(c)) in cmd_setstring()