Home | History | Annotate | Download | only in libcurses

Lines Matching refs:acs

1 /*	$NetBSD: acs.c,v 1.22 2021/09/06 07:03:49 rin Exp $	*/
34 __RCSID("$NetBSD: acs.c,v 1.22 2021/09/06 07:03:49 rin Exp $");
52 * Fill in the ACS characters. The 'acs_chars' terminfo entry is a list of
53 * character pairs - ACS definition then terminal representation.
60 unsigned char acs, term;
62 /* Default value '+' for all ACS characters */
107 if ((acs = *aofac) == '\0')
112 if (acs < NUM_ACS)
113 _acs_char[acs] = term | __ALTCHARSET;
115 __CTRACE(__CTRACE_INIT, "__init_acs: %c = %c\n", acs, term);
139 * Fill in the ACS characters. The 'acs_chars' terminfo entry is a list of
140 * character pairs - ACS definition then terminal representation.
147 unsigned char acs, term;
150 /* Default value '+' for all ACS characters */
265 if ((acs = *aofac) == '\0')
270 if (acs < NUM_ACS) {
271 _wacs_char[acs].vals[ 0 ] = term;
272 _wacs_char[acs].attributes |= WA_ALTCHARSET;
275 __CTRACE(__CTRACE_INIT, "__init_wacs: %c = %c\n", acs, term);