Home
last modified time | relevance | path

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

/freebsd-src/contrib/dialog/
H A Dbuttons.c429 wint_t cmp1 = dlg_toupper(ch); in dlg_match_char()
430 if (cmp2 != 0 && (wchar_t) cmp1 == (wchar_t) dlg_toupper(cmp2)) { in dlg_match_char()
435 if (dlg_toupper(ch) == dlg_toupper(cmp2)) in dlg_match_char()
476 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.c251 && q->curses_key == (int) dlg_toupper(curses_key)) { in dlg_lookup_key()
H A DCHANGES651 + add limit-check to dlg_toupper() in non-wide curses mode to work