Searched refs:is_ascii_char (Results 1 – 4 of 4) sorted by relevance
148 #define IS_UPPER(c) (is_ascii_char(c) && isupper((unsigned char) (c)))149 #define IS_LOWER(c) (is_ascii_char(c) && islower((unsigned char) (c)))150 #define TO_UPPER(c) (is_ascii_char(c) ? toupper((unsigned char) (c)) : (c))151 #define TO_LOWER(c) (is_ascii_char(c) ? tolower((unsigned char) (c)) : (c))153 #define IS_UPPER(c) (is_ascii_char(c) && ASCII_IS_UPPER(c))154 #define IS_LOWER(c) (is_ascii_char(c) && ASCII_IS_LOWER(c))155 #define TO_UPPER(c) (is_ascii_char(c) ? ASCII_TO_UPPER(c) : (c))156 #define TO_LOWER(c) (is_ascii_char(c) ? ASCII_TO_LOWER(c) : (c))
202 public lbool is_ascii_char(LWCHAR ch) in is_ascii_char() function472 if (!utf_mode || is_ascii_char(ch)) in pwidth()569 if (!is_ascii_char(ch)) in is_ansi_end()579 if (!is_ascii_char(ch)) in is_ansi_middle()1169 if ((!utf_mode || is_ascii_char(ch)) && control_char(ch)) in do_append()1366 } else if ((!utf_mode || is_ascii_char(ch)) && control_char(ch)) in col_vs_pos()
218 public lbool is_ascii_char(LWCHAR ch);
3007 if (!is_ascii_char(ch)) in win32_get_ichar()