Home
last modified time | relevance | path

Searched refs:dlg_toupper (Results 1 – 4 of 4) sorted by relevance

/dragonfly/contrib/dialog/
H A Dbuttons.c425 wint_t cmp1 = dlg_toupper(ch); in dlg_match_char()
426 if (cmp2 != 0 && (wchar_t) cmp1 == (wchar_t) dlg_toupper(cmp2)) { in dlg_match_char()
431 if (dlg_toupper(ch) == dlg_toupper(cmp2)) in dlg_match_char()
472 ch = (int) dlg_toupper(dlg_last_getc()); in dlg_char_to_button()
H A Ddlg_keys.h32 #define dlg_toupper(ch) towupper((wint_t)ch) macro
35 #define dlg_toupper(ch) (((ch) > 0 && (ch) <= 255) ? toupper(ch) : (ch)) macro
H A Ddlg_keys.c292 && actual_curses_key(q) == (int) dlg_toupper(curses_key)) { in dlg_lookup_key()
H A DCHANGES745 + add limit-check to dlg_toupper() in non-wide curses mode to work