]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/curses.priv.h
ncurses 6.4 - patch 20231111
[ncurses.git] / ncurses / curses.priv.h
1 /****************************************************************************
2  * Copyright 2018-2022,2023 Thomas E. Dickey                                *
3  * Copyright 1998-2017,2018 Free Software Foundation, Inc.                  *
4  *                                                                          *
5  * Permission is hereby granted, free of charge, to any person obtaining a  *
6  * copy of this software and associated documentation files (the            *
7  * "Software"), to deal in the Software without restriction, including      *
8  * without limitation the rights to use, copy, modify, merge, publish,      *
9  * distribute, distribute with modifications, sublicense, and/or sell       *
10  * copies of the Software, and to permit persons to whom the Software is    *
11  * furnished to do so, subject to the following conditions:                 *
12  *                                                                          *
13  * The above copyright notice and this permission notice shall be included  *
14  * in all copies or substantial portions of the Software.                   *
15  *                                                                          *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23  *                                                                          *
24  * Except as contained in this notice, the name(s) of the above copyright   *
25  * holders shall not be used in advertising or otherwise to promote the     *
26  * sale, use or other dealings in this Software without prior written       *
27  * authorization.                                                           *
28  ****************************************************************************/
29
30 /****************************************************************************
31  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
32  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
33  *     and: Thomas E. Dickey                        1996-on                 *
34  *     and: Juergen Pfeifer                                                 *
35  ****************************************************************************/
36
37 /*
38  * $Id: curses.priv.h,v 1.677 2023/11/10 15:11:11 tom Exp $
39  *
40  *      curses.priv.h
41  *
42  *      Header file for curses library objects which are private to
43  *      the library.
44  *
45  */
46
47 #ifndef CURSES_PRIV_H
48 #define CURSES_PRIV_H 1
49 /* *INDENT-OFF* */
50
51 #include <ncurses_dll.h>
52
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
56
57 #include <ncurses_cfg.h>
58
59 #if USE_RCS_IDS
60 #define MODULE_ID(id) static const char Ident[] = id;
61 #else
62 #define MODULE_ID(id) /*nothing*/
63 #endif
64
65 #include <stddef.h>             /* for offsetof */
66 #include <stdlib.h>
67 #include <string.h>
68 #include <sys/types.h>
69 #include <sys/stat.h>
70
71 #if HAVE_UNISTD_H
72 #include <unistd.h>
73 #endif
74
75 #if HAVE_LIMITS_H
76 # include <limits.h>
77 #elif HAVE_SYS_PARAM_H
78 # include <sys/param.h>
79 #endif
80
81 #include <assert.h>
82 #include <stdio.h>
83
84 #include <errno.h>
85
86 #if defined __hpux
87 #  ifndef EILSEQ
88 #    define EILSEQ 47
89 #  endif
90 #endif
91
92 #ifndef PATH_MAX
93 # if defined(_POSIX_PATH_MAX)
94 #  define PATH_MAX _POSIX_PATH_MAX
95 # elif defined(MAXPATHLEN)
96 #  define PATH_MAX MAXPATHLEN
97 # else
98 #  define PATH_MAX 255  /* the Posix minimum path-size */
99 # endif
100 #endif
101
102 #if DECL_ERRNO
103 extern int errno;
104 #endif
105
106 /* Some Windows related defines */
107 #undef _NC_WINDOWS
108 #if (defined(_WIN32) || defined(_WIN64))
109 #define _NC_WINDOWS
110 #else
111 #undef EXP_WIN32_DRIVER
112 #endif
113
114 #undef _NC_MINGW
115 #if (defined(__MINGW32__) || defined(__MINGW64__))
116 #define _NC_MINGW
117 #endif
118
119 #undef _NC_MSC
120 #ifdef _MSC_VER
121 #define _NC_MSC
122 #endif
123
124 /* Some systems have a broken 'select()', but workable 'poll()'.  Use that */
125 #if HAVE_WORKING_POLL
126 #define USE_FUNC_POLL 1
127 #if HAVE_POLL_H
128 #include <poll.h>
129 #else
130 #include <sys/poll.h>
131 #endif
132 #else
133 #define USE_FUNC_POLL 0
134 #endif
135
136 #if HAVE_INTTYPES_H
137 # include <inttypes.h>
138 #else
139 # if HAVE_STDINT_H
140 #  include <stdint.h>
141 # endif
142 #endif
143
144 #if (defined(__USE_MINGW_ANSI_STDIO) && __USE_MINGW_ANSI_STDIO != 0) && (defined(__GNUC__) && (__GNUC__ < 12))
145 # undef PRIxPTR         /* gcc bug fixed in 12.x */
146 # define PRIxPTR        "lX"
147 # define CASTxPTR(n)    (unsigned long)(intptr_t)(void*)(n)
148 #else
149 # define CASTxPTR(n)    (intptr_t)(n)
150 #endif
151
152 #ifndef PRIxPTR
153 # define PRIxPTR        "lx"
154 # define CASTxPTR(n)    (long)(void*)(n)
155 #endif
156
157 /* include signal.h before curses.h to work-around defect in glibc 2.1.3 */
158 #include <signal.h>
159
160 /* Alessandro Rubini's GPM (general-purpose mouse) */
161 #if HAVE_LIBGPM && HAVE_GPM_H
162 #define USE_GPM_SUPPORT 1
163 #else
164 #define USE_GPM_SUPPORT 0
165 #endif
166
167 /* QNX mouse support */
168 #if defined(__QNX__) && !defined(__QNXNTO__)
169 #define USE_QNX_MOUSE 1
170 #else
171 #define USE_QNX_MOUSE 0
172 #endif
173
174 /* EMX mouse support */
175 #ifdef __EMX__
176 #define USE_EMX_MOUSE 1
177 #else
178 #define USE_EMX_MOUSE 0
179 #endif
180
181 /* kLIBC keyboard/mouse support */
182 #if defined(__OS2__) && defined(__KLIBC__)
183 #define USE_KLIBC_KBD   1
184 #define USE_KLIBC_MOUSE 1
185 #else
186 #define USE_KLIBC_KBD   0
187 #define USE_KLIBC_MOUSE 0
188 #endif
189
190 #define DEFAULT_MAXCLICK 166
191 #define EV_MAX          8       /* size of mouse circular event queue */
192
193 /*
194  * If we don't have signals to support it, don't add a sigwinch handler.
195  * In any case, resizing is an extended feature.  Use it if we've got it.
196  */
197 #if !NCURSES_EXT_FUNCS
198 #undef HAVE_SIZECHANGE
199 #define HAVE_SIZECHANGE 0
200 #endif
201
202 #if HAVE_SIZECHANGE && USE_SIGWINCH && defined(SIGWINCH)
203 #define USE_SIZECHANGE 1
204 #else
205 #define USE_SIZECHANGE 0
206 #undef USE_SIGWINCH
207 #define USE_SIGWINCH 0
208 #endif
209
210 /*
211  * When building in the MSYS2 environment, the automatic discovery of
212  * the path separator in configure doesn't work properly. So, if building
213  * for MinGW, we enforce the correct Windows PATH separator
214  */
215 #if defined(_NC_WINDOWS)
216 #  ifdef NCURSES_PATHSEP
217 #    undef NCURSES_PATHSEP
218 #  endif
219 #  define NCURSES_PATHSEP ';'
220 #endif
221
222 /*
223  * When the standard handles have been redirected (such as inside a text editor
224  * or the less utility), keystrokes must be read from the console rather than
225  * the redirected handle.  The standard output handle suffers from a similar
226  * problem.  Both handles are not closed once opened.  The console shall be
227  * considered reachable throughout the process.
228  */
229 #if defined(_NC_WINDOWS)
230 #define GetDirectHandle(fileName, shareMode) \
231         CreateFile(TEXT(fileName), \
232                    GENERIC_READ | GENERIC_WRITE, \
233                    shareMode, \
234                    0, \
235                    OPEN_EXISTING, \
236                    0, \
237                    0)
238 #endif
239
240 /*
241  * Not all platforms have memmove; some have an equivalent bcopy.  (Some may
242  * have neither).
243  */
244 #if USE_OK_BCOPY
245 #define memmove(d,s,n) bcopy(s,d,n)
246 #elif USE_MY_MEMMOVE
247 #define memmove(d,s,n) _nc_memmove(d,s,n)
248 extern NCURSES_EXPORT(void *) _nc_memmove (void *, const void *, size_t);
249 #endif
250
251 /*
252  * If we have va_copy(), use it for assigning va_list's.
253  */
254 #if defined(HAVE___VA_COPY)
255 #define begin_va_copy(dst,src)  __va_copy(dst, src)
256 #define end_va_copy(dst)        va_end(dst)
257 #elif defined(va_copy) || defined(HAVE_VA_COPY)
258 #define begin_va_copy(dst,src)  va_copy(dst, src)
259 #define end_va_copy(dst)        va_end(dst)
260 #else
261 #define begin_va_copy(dst,src) (dst) = (src)
262 #define end_va_copy(dst)        /* nothing */
263 #endif
264
265 /*
266  * Either/both S_ISxxx and/or S_IFxxx are defined in sys/types.h; some systems
267  * lack one or the other.
268  */
269 #ifndef S_ISDIR
270 #define S_ISDIR(mode) ((mode & S_IFMT) == S_IFDIR)
271 #endif
272
273 #ifndef S_ISREG
274 #define S_ISREG(mode) ((mode & S_IFMT) == S_IFREG)
275 #endif
276
277 /*
278  * POSIX ignores the "b", which c89 specified.  Some very old systems do not
279  * accept it.
280  */
281 #if USE_FOPEN_BIN_R
282 #define BIN_R   "rb"
283 #define BIN_W   "wb"
284 #else
285 #define BIN_R   "r"
286 #define BIN_W   "w"
287 #endif
288
289 /*
290  * Scroll hints are useless when hashmap is used
291  */
292 #if !USE_SCROLL_HINTS
293 #if !USE_HASHMAP
294 #define USE_SCROLL_HINTS 1
295 #else
296 #define USE_SCROLL_HINTS 0
297 #endif
298 #endif
299
300 #if USE_SCROLL_HINTS
301 #define if_USE_SCROLL_HINTS(stmt) stmt
302 #else
303 #define if_USE_SCROLL_HINTS(stmt) /*nothing*/
304 #endif
305
306 #include <nc_string.h>
307
308 /*
309  * Options for terminal drivers, etc...
310  */
311 #ifdef USE_TERM_DRIVER
312 #define NO_TERMINAL "unknown"
313 #define USE_SP_RIPOFF     1
314 #define USE_SP_TERMTYPE   1
315 #else
316 #define NO_TERMINAL 0
317 #endif
318
319 #define VALID_TERM_ENV(term_env, no_terminal) \
320         (term_env = (NonEmpty(term_env) \
321                      ? term_env \
322                      : no_terminal), \
323          NonEmpty(term_env))
324
325 /*
326  * Originally a terminal-driver option, the window-list is per-screen to allow
327  * freeing memory used for windows when a screen is deleted.
328  */
329 #define USE_SP_WINDOWLIST 1
330
331 /*
332  * Note:  ht/cbt expansion flakes out randomly under Linux 1.1.47, but only
333  * when we're throwing control codes at the screen at high volume.  To see
334  * this, re-enable USE_HARD_TABS and run worm for a while.  Other systems
335  * probably don't want to define this either due to uncertainties about tab
336  * delays and expansion in raw mode.
337  */
338
339 #define TRIES struct tries
340 typedef TRIES {
341         TRIES    *child;            /* ptr to child.  NULL if none          */
342         TRIES    *sibling;          /* ptr to sibling.  NULL if none        */
343         unsigned char    ch;        /* character at this node               */
344         unsigned short   value;     /* code of string so far.  0 if none.   */
345 #undef TRIES
346 } TRIES;
347
348 /*
349  * Common/troublesome character definitions
350  */
351 #define StringOf(ch) {ch, 0}
352
353 #define CSI_CHR 0x9b
354 #define ESC_CHR 0x1b
355
356 #define L_BLOCK '['
357 #define R_BLOCK ']'
358 #define L_BRACE '{'
359 #define R_BRACE '}'
360 #define S_QUOTE '\''
361 #define D_QUOTE '"'
362
363 #define VT_ACSC "``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~"
364
365 /*
366  * Structure for palette tables
367  */
368
369 #define MAXCOLUMNS    135
370 #define MAXLINES      66
371 #define FIFO_SIZE     MAXCOLUMNS+2  /* for nocbreak mode input */
372
373 #define ACS_LEN       128
374
375 #define WINDOWLIST struct _win_list
376
377 #if USE_WIDEC_SUPPORT
378 #define _nc_bkgd    _bkgrnd
379 #else
380 #undef _XOPEN_SOURCE_EXTENDED
381 #undef _XPG5
382 #define _nc_bkgd    _bkgd
383 #define wgetbkgrnd(win, wch)    ((*wch = win->_bkgd) != 0 ? OK : ERR)
384 #define wbkgrnd     wbkgd
385 #endif
386
387 #undef NCURSES_OPAQUE
388 #define NCURSES_INTERNALS 1
389 #define NCURSES_OPAQUE 0
390
391 #include <curses.h>     /* we'll use -Ipath directive to get the right one! */
392
393 #if !(defined(NCURSES_WGETCH_EVENTS) && defined(NEED_KEY_EVENT))
394 #undef KEY_EVENT                /* reduce compiler-warnings with Visual C++ */
395 #endif
396
397 typedef struct
398 {
399     int red, green, blue;       /* what color_content() returns */
400     int r, g, b;                /* params to init_color() */
401     int init;                   /* true if we called init_color() */
402 }
403 color_t;
404
405 typedef union {
406     struct {
407         unsigned char red;
408         unsigned char green;
409         unsigned char blue;
410     } bits;                     /* bits per color-value in RGB */
411     unsigned value;
412 } rgb_bits_t;
413
414 /*
415  * If curses.h did not expose the SCREEN-functions, then we do not need the
416  * parameter in the corresponding unextended functions.
417  */
418
419 #define USE_SP_FUNC_SUPPORT     NCURSES_SP_FUNCS
420 #define USE_EXT_SP_FUNC_SUPPORT (NCURSES_SP_FUNCS && NCURSES_EXT_FUNCS)
421
422 #if NCURSES_SP_FUNCS
423 #define SP_PARM         sp      /* use parameter */
424 #define NCURSES_SP_ARG          SP_PARM
425 #define NCURSES_SP_DCL  SCREEN *NCURSES_SP_ARG
426 #define NCURSES_SP_DCL0 NCURSES_SP_DCL
427 #define NCURSES_SP_ARGx         NCURSES_SP_ARG,
428 #define NCURSES_SP_DCLx SCREEN *NCURSES_SP_ARGx
429 #else
430 #define SP_PARM         SP      /* use global variable */
431 #define NCURSES_SP_ARG
432 #define NCURSES_SP_DCL
433 #define NCURSES_SP_DCL0 void
434 #define NCURSES_SP_ARGx
435 #define NCURSES_SP_DCLx
436 #endif
437
438 #include <nc_panel.h>
439
440 #include <term.priv.h>
441 #include <nc_termios.h>
442
443 #define IsPreScreen(sp)      (((sp) != 0) && sp->_prescreen)
444 #define HasTerminal(sp)      (((sp) != 0) && (0 != ((sp)->_term)))
445 #define IsValidScreen(sp)    (HasTerminal(sp) && !IsPreScreen(sp))
446
447 #if USE_REENTRANT
448 #define CurTerm              _nc_prescreen._cur_term
449 #else
450 #define CurTerm              cur_term
451 #endif
452
453 #if NCURSES_SP_FUNCS
454 #define TerminalOf(sp)       ((sp) ? ((sp)->_term ? (sp)->_term : CurTerm) : CurTerm)
455 #else
456 #define TerminalOf(sp)       CurTerm
457 #endif
458
459 /*
460  * The legacy layout for TERMTYPE uses "short" for all of the numbers.  Moving
461  * past that, numeric capabilities can be "int" by using a TERMTYPE2 structure
462  * in TERMINAL, and doing most of the internal work using TERMTYPE2.  There are
463  * a few places (mostly to expose the legacy layout) where the distinction
464  * needs attention.
465  */
466 #if NCURSES_EXT_COLORS && HAVE_INIT_EXTENDED_COLOR
467 #define NCURSES_EXT_NUMBERS  1
468 #define NCURSES_INT2         int
469 #define SIZEOF_INT2          4
470 #define TerminalType(tp)     (tp)->type2
471 #else
472 #define NCURSES_EXT_NUMBERS  0
473 #define NCURSES_INT2         short
474 #define SIZEOF_INT2          2
475 #define TerminalType(tp)     (tp)->type
476 #endif
477
478 #define SIZEOF_SHORT         2
479
480 #ifdef CUR
481 #undef CUR
482 #define CUR TerminalType(cur_term).
483 #endif
484
485 /*
486  * Reduce dependency on cur_term global by using terminfo data from SCREEN's
487  * pointer to this data.
488  */
489 #ifdef USE_SP_TERMTYPE
490 #undef CUR
491 #endif
492
493 #define SP_TERMTYPE TerminalType(TerminalOf(sp)).
494
495 #include <term_entry.h>
496
497 #include <nc_tparm.h>
498
499 /*
500  * Simplify ifdef's for the "*_ATTR" macros in case italics are not configured.
501  */
502 #if defined(A_ITALIC) && defined(exit_italics_mode)
503 #define USE_ITALIC 1
504 #else
505 #define USE_ITALIC 0
506 #undef  A_ITALIC
507 #define A_ITALIC 0
508 #endif
509
510 /*
511  * Use these macros internally, to make tracing less verbose.  But leave the
512  * option for compiling the tracing into the library.
513  */
514 #if 1
515 #define ColorPair(n)            (NCURSES_BITS(n, 0) & A_COLOR)
516 #define PairNumber(a)           (NCURSES_CAST(int,(((unsigned long)(a) & A_COLOR) >> NCURSES_ATTR_SHIFT)))
517 #else
518 #define ColorPair(pair)         COLOR_PAIR(pair)
519 #define PairNumber(attr)        PAIR_NUMBER(attr)
520 #endif
521
522 #define unColor(n)              unColor2(AttrOf(n))
523 #define unColor2(a)             ((a) & ALL_BUT_COLOR)
524
525 /*
526  * Extended-colors stores the color pair in a separate struct-member than the
527  * attributes.  But for compatibility, we handle most cases where a program
528  * written for non-extended colors stores the color in the attributes by
529  * checking for a color pair in both places.
530  */
531 #if NCURSES_EXT_COLORS
532 #define if_EXT_COLORS(stmt)     stmt
533 #define SetPair(value,p)        SetPair2((value).ext_color, AttrOf(value), p)
534 #define SetPair2(c,a,p)         c = (p), \
535                                 a = (unColor2(a) | ColorPair(oldColor(c)))
536 #define GetPair(value)          GetPair2((value).ext_color, AttrOf(value))
537 #define GetPair2(c,a)           ((c) ? (c) : PairNumber(a))
538 #define oldColor(p)             (((p) > 255) ? 255 : (p))
539 #define GET_WINDOW_PAIR(w)      GetPair2((w)->_color, (w)->_attrs)
540 #define SET_WINDOW_PAIR(w,p)    (w)->_color = (p)
541 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b) && GetPair(a) == GetPair(b))
542
543 #define VIDPUTS(sp,attr,pair)   do { \
544                                     int vid_pair = pair; \
545                                     NCURSES_SP_NAME(vid_puts)( \
546                                         NCURSES_SP_ARGx attr, \
547                                         (NCURSES_PAIRS_T) pair, \
548                                         &vid_pair, \
549                                         NCURSES_OUTC_FUNC); \
550                                 } while (0)
551
552 #else /* !NCURSES_EXT_COLORS */
553
554 #define if_EXT_COLORS(stmt)     /* nothing */
555 #define SetPair(value,p)        RemAttr(value, A_COLOR), \
556                                 SetAttr(value, AttrOf(value) | ColorPair(p))
557 #define GetPair(value)          PairNumber(AttrOf(value))
558 #define GET_WINDOW_PAIR(w)      PairNumber(WINDOW_ATTRS(w))
559 #define SET_WINDOW_PAIR(w,p)    WINDOW_ATTRS(w) &= ALL_BUT_COLOR, \
560                                 WINDOW_ATTRS(w) |= ColorPair(p)
561 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b))
562
563 #define VIDPUTS(sp,attr,pair)   NCURSES_SP_NAME(vidputs)(NCURSES_SP_ARGx attr, NCURSES_OUTC_FUNC)
564
565 #endif /* NCURSES_EXT_COLORS */
566
567 #define NCURSES_OUTC_FUNC       NCURSES_SP_NAME(_nc_outch)
568 #define NCURSES_PUTP2(name,value)    NCURSES_SP_NAME(_nc_putp)(NCURSES_SP_ARGx name, value)
569 #define NCURSES_PUTP2_FLUSH(name,value)    NCURSES_SP_NAME(_nc_putp_flush)(NCURSES_SP_ARGx name, value)
570
571 #if NCURSES_NO_PADDING
572 #define GetNoPadding(sp)        ((sp) ? (sp)->_no_padding : _nc_prescreen._no_padding)
573 #define SetNoPadding(sp)        _nc_set_no_padding(sp)
574 extern NCURSES_EXPORT(void)     _nc_set_no_padding(SCREEN *);
575 #else
576 #define GetNoPadding(sp)        FALSE
577 #define SetNoPadding(sp)        /*nothing*/
578 #endif
579
580 #define WINDOW_ATTRS(w)         ((w)->_attrs)
581
582 #define SCREEN_ATTRS(s)         (*((s)->_current_attr))
583 #define GET_SCREEN_PAIR(s)      GetPair(SCREEN_ATTRS(s))
584 #define SET_SCREEN_PAIR(s,p)    SetPair(SCREEN_ATTRS(s), p)
585
586 #if USE_REENTRANT || NCURSES_SP_FUNCS
587 extern NCURSES_EXPORT(int *)    _nc_ptr_Lines (SCREEN *);
588 extern NCURSES_EXPORT(int *)    _nc_ptr_Cols (SCREEN *);
589 extern NCURSES_EXPORT(int *)    _nc_ptr_Tabsize (SCREEN *);
590 extern NCURSES_EXPORT(int *)    _nc_ptr_Escdelay (SCREEN *);
591 #endif
592
593 #if USE_REENTRANT
594
595 #define ptrLines(sp)         (sp ? &(sp->_LINES) : &(_nc_prescreen._LINES))
596 #define ptrCols(sp)          (sp ? &(sp->_COLS) : &(_nc_prescreen._COLS))
597 #define ptrTabsize(sp)       (sp ? &(sp->_TABSIZE) : &(_nc_prescreen._TABSIZE))
598 #define ptrEscdelay(sp)      (sp ? &(sp->_ESCDELAY) : &(_nc_prescreen._ESCDELAY))
599
600 #define SET_LINES(value)     *_nc_ptr_Lines(SP_PARM) = value
601 #define SET_COLS(value)      *_nc_ptr_Cols(SP_PARM) = value
602 #define SET_TABSIZE(value)   *_nc_ptr_Tabsize(SP_PARM) = value
603 #define SET_ESCDELAY(value)  *_nc_ptr_Escdelay(SP_PARM) = value
604
605 #else
606
607 #define ptrLines(sp)         &LINES
608 #define ptrCols(sp)          &COLS
609 #define ptrTabsize(sp)       &TABSIZE
610 #define ptrEscdelay(sp)      &ESCDELAY
611
612 #define SET_LINES(value)     LINES = value
613 #define SET_COLS(value)      COLS = value
614 #define SET_TABSIZE(value)   TABSIZE = value
615 #define SET_ESCDELAY(value)  ESCDELAY = value
616
617 #endif
618
619 #define IS_SUBWIN(w)         ((w)->_flags & _SUBWIN)
620 #define IS_PAD(w)            ((w)->_flags & _ISPAD)
621 #define IS_WRAPPED(w)        ((w)->_flags & _WRAPPED)
622
623 #define HasHardTabs()   (NonEmpty(clear_all_tabs) && NonEmpty(set_tab))
624
625 #define TR_MUTEX(data) _tracef("%s@%d: me:%08lX COUNT:%2u/%2d/%6d/%2d/%s%9u: " #data, \
626             __FILE__, __LINE__, \
627             (unsigned long) (pthread_self()), \
628             data.__data.__lock, \
629             data.__data.__count, \
630             data.__data.__owner, \
631             data.__data.__kind, \
632             (data.__data.__nusers > 5) ? " OOPS " : "", \
633             data.__data.__nusers)
634 #define TR_GLOBAL_MUTEX(name) TR_MUTEX(_nc_globals.mutex_##name)
635
636 #if USE_WEAK_SYMBOLS
637 #if defined(__GNUC__)
638 #  if defined __USE_ISOC99
639 #    define _cat_pragma(exp)    _Pragma(#exp)
640 #    define _weak_pragma(exp)   _cat_pragma(weak name)
641 #  else
642 #    define _weak_pragma(exp)
643 #  endif
644 #  define _declare(name)        __extension__ extern __typeof__(name) name
645 #  define weak_symbol(name)     _weak_pragma(name) _declare(name) __attribute__((weak))
646 #else
647 #  undef USE_WEAK_SYMBOLS
648 #  define USE_WEAK_SYMBOLS 0
649 #endif
650 #endif
651
652 #ifdef USE_PTHREADS
653
654 #if USE_REENTRANT
655 #include <pthread.h>
656 extern NCURSES_EXPORT(void) _nc_init_pthreads(void);
657 extern NCURSES_EXPORT(void) _nc_mutex_init(pthread_mutex_t *);
658 extern NCURSES_EXPORT(int) _nc_mutex_lock(pthread_mutex_t *);
659 extern NCURSES_EXPORT(int) _nc_mutex_trylock(pthread_mutex_t *);
660 extern NCURSES_EXPORT(int) _nc_mutex_unlock(pthread_mutex_t *);
661 #define _nc_lock_global(name)   _nc_mutex_lock(&_nc_globals.mutex_##name)
662 #define _nc_try_global(name)    _nc_mutex_trylock(&_nc_globals.mutex_##name)
663 #define _nc_unlock_global(name) _nc_mutex_unlock(&_nc_globals.mutex_##name)
664
665 #else
666 #error POSIX threads requires --enable-reentrant option
667 #endif
668
669 #ifdef USE_PTHREADS
670 #  if USE_WEAK_SYMBOLS
671 weak_symbol(pthread_sigmask);
672 weak_symbol(pthread_kill);
673 weak_symbol(pthread_self);
674 weak_symbol(pthread_equal);
675 weak_symbol(pthread_mutex_init);
676 weak_symbol(pthread_mutex_lock);
677 weak_symbol(pthread_mutex_unlock);
678 weak_symbol(pthread_mutex_trylock);
679 weak_symbol(pthread_mutexattr_settype);
680 weak_symbol(pthread_mutexattr_init);
681 extern NCURSES_EXPORT(int) _nc_sigprocmask(int, const sigset_t *, sigset_t *);
682 #    undef  sigprocmask
683 #    define sigprocmask(a, b, c) _nc_sigprocmask(a, b, c)
684 #    define GetThreadID() (((pthread_self)) ? pthread_self() : (pthread_t) getpid())
685 #  else
686 #    define GetThreadID() pthread_self()
687 #  endif
688 #endif
689
690 #if HAVE_NANOSLEEP
691 #undef HAVE_NANOSLEEP
692 #define HAVE_NANOSLEEP 0        /* nanosleep suspends all threads */
693 #endif
694
695 #else /* !USE_PTHREADS */
696
697 #if USE_PTHREADS_EINTR
698 #  if USE_WEAK_SYMBOLS
699 #include <pthread.h>
700 weak_symbol(pthread_sigmask);
701 weak_symbol(pthread_kill);
702 weak_symbol(pthread_self);
703 weak_symbol(pthread_equal);
704 extern NCURSES_EXPORT(int) _nc_sigprocmask(int, const sigset_t *, sigset_t *);
705 #    undef  sigprocmask
706 #    define sigprocmask(a, b, c) _nc_sigprocmask(a, b, c)
707 #  endif
708 #endif /* USE_PTHREADS_EINTR */
709
710 #define _nc_init_pthreads()     /* nothing */
711 #define _nc_mutex_init(obj)     /* nothing */
712
713 #define _nc_lock_global(name)   /* nothing */
714 #define _nc_try_global(name)    0
715 #define _nc_unlock_global(name) /* nothing */
716 #endif /* USE_PTHREADS */
717
718 #if USE_PTHREADS_EINTR
719 extern NCURSES_EXPORT(void) _nc_set_read_thread(bool);
720 #else
721 #define _nc_set_read_thread(enable)     /* nothing */
722 #endif
723
724 /*
725  * When using sp-funcs, locks are targeted to SCREEN-level granularity.
726  * So the locking is done in the non-sp-func (which calls the sp-func) rather
727  * than in the sp-func itself.
728  *
729  * Use the _nc_nonsp_XXX functions in the function using "NCURSES_SP_NAME()".
730  * Use the _nc_sp_XXX functions in the function using "#if NCURSES_SP_FUNCS".
731  */
732 #if NCURSES_SP_FUNCS
733
734 #define _nc_nonsp_lock_global(name)     /* nothing */
735 #define _nc_nonsp_try_global(name)    0
736 #define _nc_nonsp_unlock_global(name)   /* nothing */
737
738 #define _nc_sp_lock_global(name)        _nc_lock_global(name)
739 #define _nc_sp_try_global(name)         _nc_try_global(name)
740 #define _nc_sp_unlock_global(name)      _nc_unlock_global(name)
741
742 #else
743
744 #define _nc_nonsp_lock_global(name)     _nc_lock_global(name)
745 #define _nc_nonsp_try_global(name)      _nc_try_global(name)
746 #define _nc_nonsp_unlock_global(name)   _nc_unlock_global(name)
747
748 #define _nc_sp_lock_global(name)        /* nothing */
749 #define _nc_sp_try_global(name)    0
750 #define _nc_sp_unlock_global(name)      /* nothing */
751
752 #endif
753
754 #if HAVE_CLOCK_GETTIME
755 # define PRECISE_GETTIME 1
756 # define GetClockTime(t) clock_gettime(CLOCK_REALTIME, t)
757 # define TimeType struct timespec
758 # define TimeScale 1000000000L          /* 1e9 */
759 # define sub_secs tv_nsec
760 #elif HAVE_GETTIMEOFDAY
761 # define PRECISE_GETTIME 1
762 # define GetClockTime(t) gettimeofday(t, 0)
763 # define TimeType struct timeval
764 # define TimeScale 1000000L             /* 1e6 */
765 # define sub_secs tv_usec
766 #else
767 # define PRECISE_GETTIME 0
768 # define TimeType time_t
769 #endif
770
771 /*
772  * Definitions for color pairs
773  */
774
775 #define MAX_OF_TYPE(t)   (int)(((unsigned t)(~0))>>1)
776
777 #include <new_pair.h>
778
779 #define isDefaultColor(c)       ((c) < 0)
780 #define COLOR_DEFAULT           -1
781
782 #if defined(USE_BUILD_CC) || (defined(USE_TERMLIB) && !defined(NEED_NCURSES_CH_T))
783
784 #undef NCURSES_CH_T             /* this is not a termlib feature */
785 #define NCURSES_CH_T void       /* ...but we need a pointer in SCREEN */
786
787 #endif  /* USE_TERMLIB */
788
789 #ifndef USE_TERMLIB
790 struct ldat
791 {
792         NCURSES_CH_T    *text;          /* text of the line */
793         NCURSES_SIZE_T  firstchar;      /* first changed character in the line */
794         NCURSES_SIZE_T  lastchar;       /* last changed character in the line */
795         NCURSES_SIZE_T  oldindex;       /* index of the line at last update */
796 };
797 #endif  /* USE_TERMLIB */
798
799 typedef enum {
800         M_XTERM = -1            /* use xterm's mouse tracking? */
801         ,M_NONE = 0             /* no mouse device */
802 #if USE_GPM_SUPPORT
803         ,M_GPM                  /* use GPM */
804 #endif
805 #if USE_SYSMOUSE
806         ,M_SYSMOUSE             /* FreeBSD sysmouse on console */
807 #endif
808 #ifdef USE_TERM_DRIVER
809         ,M_TERM_DRIVER          /* Win32 console, etc */
810 #endif
811 } MouseType;
812
813 typedef enum {
814         MF_X10 = 0              /* conventional 3-byte format */
815         , MF_SGR1006            /* xterm private mode 1006, SGR-style */
816 #ifdef EXP_XTERM_1005
817         , MF_XTERM_1005         /* xterm UTF-8 private mode 1005 */
818 #endif
819 } MouseFormat;
820
821 /*
822  * Structures for scrolling.
823  */
824
825 typedef struct {
826         unsigned long hashval;
827         int oldcount, newcount;
828         int oldindex, newindex;
829 } HASHMAP;
830
831 /*
832  * Structures for soft labels.
833  */
834
835 struct _SLK;
836
837 #if !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
838
839 typedef struct
840 {
841         char *ent_text;         /* text for the label */
842         char *form_text;        /* formatted text (left/center/...) */
843         int ent_x;              /* x coordinate of this field */
844         char dirty;             /* this label has changed */
845         char visible;           /* field is visible */
846 } slk_ent;
847
848 typedef struct _SLK {
849         bool    dirty;          /* all labels have changed */
850         bool    hidden;         /* soft labels are hidden */
851         WINDOW  *win;
852         slk_ent *ent;
853         short   maxlab;         /* number of available labels */
854         short   labcnt;         /* number of allocated labels */
855         short   maxlen;         /* length of labels */
856         NCURSES_CH_T attr;      /* soft label attribute */
857 } SLK;
858
859 #endif  /* USE_TERMLIB */
860
861 #if USE_GPM_SUPPORT
862 #undef buttons                  /* term.h defines this, and gpm uses it! */
863 #include <gpm.h>
864 #if USE_WEAK_SYMBOLS
865 weak_symbol(Gpm_Wgetch);
866 #endif
867
868 #ifdef HAVE_LIBDL
869 /* link dynamically to GPM */
870 typedef int *TYPE_gpm_fd;
871 typedef int (*TYPE_Gpm_Open) (Gpm_Connect *, int);
872 typedef int (*TYPE_Gpm_Close) (void);
873 typedef int (*TYPE_Gpm_GetEvent) (Gpm_Event *);
874
875 #define my_gpm_fd       SP_PARM->_mouse_gpm_fd
876 #define my_Gpm_Open     SP_PARM->_mouse_Gpm_Open
877 #define my_Gpm_Close    SP_PARM->_mouse_Gpm_Close
878 #define my_Gpm_GetEvent SP_PARM->_mouse_Gpm_GetEvent
879 #else
880 /* link statically to GPM */
881 #define my_gpm_fd       &gpm_fd
882 #define my_Gpm_Open     Gpm_Open
883 #define my_Gpm_Close    Gpm_Close
884 #define my_Gpm_GetEvent Gpm_GetEvent
885 #endif /* HAVE_LIBDL */
886 #endif /* USE_GPM_SUPPORT */
887
888 /*
889  * Limit delay-times to 30 seconds, which is consistent with signed 16-bit
890  * numbers in legacy terminfo.
891  */
892 #define MAX_DELAY_MSECS 30000
893
894 /*
895  * When converting from terminfo to termcap, check for cases where we can trim
896  * octal escapes down to 2-character form.  It is useful for terminfo format
897  * also, but not as important.
898  */
899 #define MAX_TC_FIXUPS   10
900 #define MIN_TC_FIXUPS   4
901
902 #define isoctal(c) ((c) >= '0' && (c) <= '7')
903
904 /*
905  * The filesystem database normally uses a single-letter for the lower level
906  * of directories.  Use a hexadecimal code for filesystems which do not
907  * preserve mixed-case names.
908  */
909 #if MIXEDCASE_FILENAMES
910 #define LEAF_FMT "%c"
911 #define LEAF_LEN 1
912 #else
913 #define LEAF_FMT "%02x"
914 #define LEAF_LEN 2
915 #endif
916
917 /*
918  * TRACEMSE_FMT is no longer than 80 columns, there are 5 numbers that
919  * could at most have 10 digits, and the mask contains no more than 32 bits
920  * with each bit representing less than 15 characters.  Usually the whole
921  * string is less than 80 columns, but this buffer size is an absolute
922  * limit.
923  */
924 #define TRACEMSE_MAX    (80 + (5 * 10) + (32 * 15))
925 #define TRACEMSE_FMT    "id %2d  at (%2d, %2d, %2d) state %4lx = {" /* } */
926
927 #ifdef USE_TERM_DRIVER
928 struct DriverTCB; /* Terminal Control Block forward declaration */
929 #define INIT_TERM_DRIVER()      _nc_globals.term_driver = _nc_get_driver
930 #else
931 #define INIT_TERM_DRIVER()      /* nothing */
932 #endif
933
934 extern NCURSES_EXPORT_VAR(NCURSES_GLOBALS) _nc_globals;
935
936 /* The limit reserves one byte for a terminating NUL */
937 #define my_getstr_limit (_nc_globals.getstr_limit - 1)
938 #define _nc_getstr_limit(n) \
939         (((n) < 0) \
940          ? my_getstr_limit \
941          : (((n) > my_getstr_limit) \
942             ? my_getstr_limit \
943             : (n)))
944
945 /*
946  * Use screen-specific ripoff data (for softkeys) rather than global.
947  */
948 #ifdef USE_SP_RIPOFF
949 #define safe_ripoff_sp     (sp)->rsp
950 #define safe_ripoff_stack  (sp)->rippedoff
951 #else
952 #define safe_ripoff_sp     _nc_prescreen.rsp
953 #define safe_ripoff_stack  _nc_prescreen.rippedoff
954 #endif
955
956 extern NCURSES_EXPORT_VAR(NCURSES_PRESCREEN) _nc_prescreen;
957
958 typedef enum {
959     ewUnknown = 0,
960     ewInitial,
961     ewRunning,
962     ewSuspend
963 } ENDWIN;
964
965 typedef struct {
966         int             _nl;            /* True if NL -> CR/NL is on        */
967         int             _raw;           /* True if in raw mode              */
968         int             _cbreak;        /* 1 if in cbreak mode              */
969                                         /* > 1 if in halfdelay mode         */
970         int             _echo;          /* True if echo on                  */
971 } TTY_FLAGS;
972
973 #define IsNl(sp)        (sp)->_tty_flags._nl
974 #define IsRaw(sp)       (sp)->_tty_flags._raw
975 #define IsCbreak(sp)    (sp)->_tty_flags._cbreak
976 #define IsEcho(sp)      (sp)->_tty_flags._echo
977
978 /*
979  * The SCREEN structure.
980  */
981 typedef struct screen {
982         int             _ifd;           /* input file descriptor for screen */
983         int             _ofd;           /* output file descriptor for screen */
984         FILE            *_ofp;          /* output file ptr for screen       */
985         char            *out_buffer;    /* output buffer                    */
986         size_t          out_limit;      /* output buffer size               */
987         size_t          out_inuse;      /* output buffer current use        */
988         bool            _filtered;      /* filter() was called              */
989         bool            _prescreen;     /* is in prescreen phase            */
990         bool            _use_env;       /* LINES & COLS from environment?   */
991         int             _checkfd;       /* filedesc for typeahead check     */
992         TERMINAL        *_term;         /* terminal type information        */
993         TTY             _saved_tty;     /* savetty/resetty information      */
994         NCURSES_SIZE_T  _lines;         /* screen lines                     */
995         NCURSES_SIZE_T  _columns;       /* screen columns                   */
996
997         NCURSES_SIZE_T  _lines_avail;   /* lines available for stdscr       */
998         NCURSES_SIZE_T  _topstolen;     /* lines stolen from top            */
999
1000         WINDOW          *_curscr;       /* current screen                   */
1001         WINDOW          *_newscr;       /* virtual screen to be updated to  */
1002         WINDOW          *_stdscr;       /* screen's full-window context     */
1003
1004 #define CurScreen(sp)  (sp)->_curscr
1005 #define NewScreen(sp)  (sp)->_newscr
1006 #define StdScreen(sp)  (sp)->_stdscr
1007
1008         TRIES           *_keytry;       /* "Try" for use with keypad mode   */
1009         TRIES           *_key_ok;       /* Disabled keys via keyok(,FALSE)  */
1010         bool            _tried;         /* keypad mode was initialized      */
1011         bool            _keypad_on;     /* keypad mode is currently on      */
1012
1013         bool            _called_wgetch; /* check for recursion in wgetch()  */
1014         int             _fifo[FIFO_SIZE];       /* input push-back buffer   */
1015         short           _fifohead,      /* head of fifo queue               */
1016                         _fifotail,      /* tail of fifo queue               */
1017                         _fifopeek,      /* where to peek for next char      */
1018                         _fifohold;      /* set if breakout marked           */
1019
1020         int             _endwin;        /* are we out of window mode?       */
1021         NCURSES_CH_T    *_current_attr; /* holds current attributes set     */
1022         int             _coloron;       /* is color enabled?                */
1023         int             _color_defs;    /* are colors modified              */
1024         int             _cursor;        /* visibility of the cursor         */
1025         int             _cursrow;       /* physical cursor row              */
1026         int             _curscol;       /* physical cursor column           */
1027         bool            _notty;         /* true if we cannot switch non-tty */
1028         TTY_FLAGS       _tty_flags;
1029         int             _use_meta;      /* use the meta key?                */
1030         struct _SLK     *_slk;          /* ptr to soft key struct / NULL    */
1031         int             slk_format;     /* selected format for this screen  */
1032         /* cursor movement costs; units are 10ths of milliseconds */
1033         int             _char_padding;  /* cost of character put            */
1034         int             _cr_cost;       /* cost of (carriage_return)        */
1035         int             _cup_cost;      /* cost of (cursor_address)         */
1036         int             _home_cost;     /* cost of (cursor_home)            */
1037         int             _ll_cost;       /* cost of (cursor_to_ll)           */
1038         int             _cub1_cost;     /* cost of (cursor_left)            */
1039         int             _cuf1_cost;     /* cost of (cursor_right)           */
1040         int             _cud1_cost;     /* cost of (cursor_down)            */
1041         int             _cuu1_cost;     /* cost of (cursor_up)              */
1042         int             _cub_cost;      /* cost of (parm_cursor_left)       */
1043         int             _cuf_cost;      /* cost of (parm_cursor_right)      */
1044         int             _cud_cost;      /* cost of (parm_cursor_down)       */
1045         int             _cuu_cost;      /* cost of (parm_cursor_up)         */
1046         int             _hpa_cost;      /* cost of (column_address)         */
1047         int             _vpa_cost;      /* cost of (row_address)            */
1048         /* used in tty_update.c, must be chars */
1049         int             _ed_cost;       /* cost of (clr_eos)                */
1050         int             _el_cost;       /* cost of (clr_eol)                */
1051         int             _el1_cost;      /* cost of (clr_bol)                */
1052         int             _dch1_cost;     /* cost of (delete_character)       */
1053         int             _ich1_cost;     /* cost of (insert_character)       */
1054         int             _dch_cost;      /* cost of (parm_dch)               */
1055         int             _ich_cost;      /* cost of (parm_ich)               */
1056         int             _ech_cost;      /* cost of (erase_chars)            */
1057         int             _rep_cost;      /* cost of (repeat_char)            */
1058         int             _hpa_ch_cost;   /* cost of (column_address)         */
1059         int             _cup_ch_cost;   /* cost of (cursor_address)         */
1060         int             _cuf_ch_cost;   /* cost of (parm_cursor_right)      */
1061         int             _inline_cost;   /* cost of inline-move              */
1062         int             _smir_cost;     /* cost of (enter_insert_mode)      */
1063         int             _rmir_cost;     /* cost of (exit_insert_mode)       */
1064         int             _ip_cost;       /* cost of (insert_padding)         */
1065         /* used in lib_mvcur.c */
1066         char *          _address_cursor;
1067         /* used in tty_update.c */
1068         int             _scrolling;     /* 1 if terminal's smart enough to  */
1069
1070         /* used in lib_color.c */
1071         rgb_bits_t      _direct_color;  /* RGB overrides color-table         */
1072         color_t         *_color_table;  /* screen's color palette            */
1073         int             _color_count;   /* count of colors in palette        */
1074         colorpair_t     *_color_pairs;  /* screen's color pair list          */
1075         int             _pair_count;    /* same as COLOR_PAIRS               */
1076         int             _pair_limit;    /* actual limit of color-pairs       */
1077         int             _pair_alloc;    /* current table-size of color-pairs */
1078         chtype          _ok_attributes; /* valid attributes for terminal     */
1079         chtype          _xmc_suppress;  /* attributes to suppress if xmc     */
1080         chtype          _xmc_triggers;  /* attributes to process if xmc      */
1081         chtype *        _acs_map;       /* the real alternate-charset map    */
1082         bool *          _screen_acs_map;
1083
1084
1085         /* used in lib_vidattr.c */
1086         bool            _use_rmso;      /* true if we may use 'rmso'         */
1087         bool            _use_rmul;      /* true if we may use 'rmul'         */
1088
1089         /*
1090          * These data correspond to the state of the idcok() and idlok()
1091          * functions.  A caveat is in order here:  the XSI and SVr4
1092          * documentation specify that these functions apply to the window which
1093          * is given as an argument.  However, ncurses implements this logic
1094          * only for the newscr/curscr update process, _not_ per-window.
1095          */
1096         bool            _nc_sp_idlok;
1097         bool            _nc_sp_idcok;
1098
1099         /*
1100          * These are the data that support the mouse interface.
1101          */
1102         bool            _mouse_initialized;
1103         MouseType       _mouse_type;
1104         int             _maxclick;
1105         bool            (*_mouse_event) (SCREEN *);
1106         bool            (*_mouse_inline)(SCREEN *);
1107         bool            (*_mouse_parse) (SCREEN *, int);
1108         void            (*_mouse_resume)(SCREEN *);
1109         void            (*_mouse_wrap)  (SCREEN *);
1110         int             _mouse_fd;      /* file-descriptor, if any */
1111         bool            _mouse_active;  /* true if initialized */
1112         mmask_t         _mouse_mask;    /* set via mousemask() */
1113         mmask_t         _mouse_mask2;   /* OR's in press/release bits */
1114         mmask_t         _mouse_bstate;
1115         MouseFormat     _mouse_format;  /* type of xterm mouse protocol */
1116         NCURSES_CONST char *_mouse_xtermcap; /* string to enable/disable mouse */
1117         MEVENT          _mouse_events[EV_MAX];  /* hold the last mouse event seen */
1118         MEVENT          *_mouse_eventp; /* next free slot in event queue */
1119
1120         /*
1121          * These are data that support the proper handling of the panel stack on an
1122          * per screen basis.
1123          */
1124         struct panelhook _panelHook;
1125
1126         bool            _sig_winch;
1127         SCREEN          *_next_screen;
1128
1129         /* hashes for old and new lines */
1130         unsigned long   *oldhash, *newhash;
1131         HASHMAP         *hashtab;
1132         int             hashtab_len;
1133         int             *_oldnum_list;
1134         int             _oldnum_size;
1135
1136         NCURSES_SP_OUTC _outch;         /* output handler if not putc */
1137         NCURSES_OUTC    jump;
1138
1139         ripoff_t        rippedoff[N_RIPS];
1140         ripoff_t        *rsp;
1141
1142         int             _legacy_coding; /* see use_legacy_coding() */
1143
1144 #if NCURSES_NO_PADDING
1145         bool            _no_padding;    /* flag to set if padding disabled  */
1146 #endif
1147
1148 #if USE_HARD_TABS
1149         int             _ht_cost;       /* cost of (tab)                    */
1150         int             _cbt_cost;      /* cost of (backtab)                */
1151 #endif /* USE_HARD_TABS */
1152
1153         /* used in lib_vidattr.c */
1154 #if USE_ITALIC
1155         bool            _use_ritm;      /* true if we may use 'ritm'         */
1156 #endif
1157
1158         /* used in getch/twait */
1159 #if USE_KLIBC_KBD
1160         bool            _extended_key;  /* true if an extended key           */
1161 #endif
1162
1163         /* used in lib_color.c */
1164 #if NCURSES_EXT_FUNCS
1165         bool            _assumed_color; /* use assumed colors                */
1166         bool            _default_color; /* use default colors                */
1167         bool            _has_sgr_39_49; /* has ECMA default color support    */
1168         int             _default_fg;    /* assumed default foreground        */
1169         int             _default_bg;    /* assumed default background        */
1170         int             _default_pairs; /* count pairs using default color   */
1171 #endif
1172
1173         /* system-dependent mouse data */
1174 #if USE_GPM_SUPPORT
1175         bool            _mouse_gpm_loaded;
1176         bool            _mouse_gpm_found;
1177 #ifdef HAVE_LIBDL
1178         void            *_dlopen_gpm;
1179         TYPE_gpm_fd     _mouse_gpm_fd;
1180         TYPE_Gpm_Open   _mouse_Gpm_Open;
1181         TYPE_Gpm_Close  _mouse_Gpm_Close;
1182         TYPE_Gpm_GetEvent _mouse_Gpm_GetEvent;
1183 #endif
1184         Gpm_Connect     _mouse_gpm_connect;
1185 #endif /* USE_GPM_SUPPORT */
1186
1187 #if USE_EMX_MOUSE
1188         int             _emxmouse_wfd;
1189         int             _emxmouse_thread;
1190         int             _emxmouse_activated;
1191         char            _emxmouse_buttons[4];
1192 #endif
1193
1194 #if USE_SYSMOUSE
1195         MEVENT          _sysmouse_fifo[FIFO_SIZE];
1196         int             _sysmouse_head;
1197         int             _sysmouse_tail;
1198         int             _sysmouse_char_width;   /* character width */
1199         int             _sysmouse_char_height;  /* character height */
1200         int             _sysmouse_old_buttons;
1201         int             _sysmouse_new_buttons;
1202 #endif
1203
1204 #if defined(USE_TERM_DRIVER) || defined(EXP_WIN32_DRIVER)
1205         MEVENT          _drv_mouse_fifo[FIFO_SIZE];
1206         int             _drv_mouse_head;
1207         int             _drv_mouse_tail;
1208         int             _drv_mouse_old_buttons;
1209         int             _drv_mouse_new_buttons;
1210 #endif
1211         /*
1212          * This supports automatic resizing
1213          */
1214 #if USE_SIZECHANGE
1215         int             (*_resize)(NCURSES_SP_DCLx int y, int x);
1216         int             (*_ungetch)(SCREEN *, int);
1217 #endif
1218
1219 #ifdef USE_SP_WINDOWLIST
1220         WINDOWLIST*     _windowlist;
1221 #define WindowList(sp)  (sp)->_windowlist
1222 #endif
1223
1224 #if USE_REENTRANT
1225         char            _ttytype[NAMESIZE];
1226         int             _ESCDELAY;
1227         int             _TABSIZE;
1228         int             _LINES;
1229         int             _COLS;
1230 #endif
1231
1232 #if NCURSES_SP_FUNCS
1233         bool            use_tioctl;
1234 #endif
1235
1236         /*
1237          * ncurses/ncursesw are the same up to this point.
1238          */
1239 #if USE_WIDEC_SUPPORT
1240         /* recent versions of 'screen' have partially-working support for
1241          * UTF-8, but do not permit ACS at the same time (see tty_update.c).
1242          */
1243         bool            _screen_acs_fix;
1244         bool            _screen_unicode;
1245 #endif
1246
1247 #if NCURSES_EXT_FUNCS && NCURSES_EXT_COLORS
1248         void            *_ordered_pairs; /* index used by alloc_pair()       */
1249         int             _pairs_used;    /* actual number of color-pairs used */
1250         int             _recent_pair;   /* number for most recent free-pair  */
1251 #endif
1252
1253 #ifdef TRACE
1254         char            tracechr_buf[40];
1255         char            tracemse_buf[TRACEMSE_MAX];
1256 #if USE_REENTRANT
1257         long            _outchars;
1258         const char      *_tputs_trace;
1259 #endif
1260 #endif
1261 #undef SCREEN
1262 } SCREEN;
1263
1264 extern NCURSES_EXPORT_VAR(SCREEN *) _nc_screen_chain;
1265 extern NCURSES_EXPORT_VAR(SIG_ATOMIC_T) _nc_have_sigwinch;
1266
1267         WINDOWLIST {
1268         WINDOWLIST *next;
1269         SCREEN *screen;         /* screen containing the window */
1270         WINDOW  win;            /* WINDOW_EXT() needs to account for offset */
1271 #if NCURSES_WIDECHAR
1272         char addch_work[(MB_LEN_MAX * 9) + 1];
1273         unsigned addch_used;    /* number of bytes in addch_work[] */
1274         int addch_x;            /* x-position for addch_work[] */
1275         int addch_y;            /* y-position for addch_work[] */
1276 #endif
1277 };
1278
1279 #define WINDOW_EXT(w,m) (((WINDOWLIST *)((void *)((char *)(w) - offsetof(WINDOWLIST, win))))->m)
1280
1281 #ifdef USE_SP_WINDOWLIST
1282 #define SP_INIT_WINDOWLIST(sp)  WindowList(sp) = 0
1283 #else
1284 #define SP_INIT_WINDOWLIST(sp)  /* nothing */
1285 #endif
1286
1287 #define SP_PRE_INIT(sp)                         \
1288     sp->_cursrow           = -1;                \
1289     sp->_curscol           = -1;                \
1290     IsNl(sp)               = TRUE;              \
1291     IsRaw(sp)              = FALSE;             \
1292     IsCbreak(sp)           = 0;                 \
1293     IsEcho(sp)             = TRUE;              \
1294     sp->_fifohead          = -1;                \
1295     sp->_endwin            = ewSuspend;         \
1296     sp->_cursor            = -1;                \
1297     SP_INIT_WINDOWLIST(sp);                     \
1298     sp->_outch             = NCURSES_OUTC_FUNC; \
1299     sp->jump               = 0                  \
1300
1301 /* usually in <limits.h> */
1302 #ifndef UCHAR_MAX
1303 #define UCHAR_MAX 255
1304 #endif
1305
1306 /* The terminfo source is assumed to be 7-bit ASCII */
1307 #define is7bits(c)      ((unsigned)(c) < 128)
1308
1309 /* Checks for isprint() should be done on 8-bit characters (non-wide) */
1310 #define is8bits(c)      ((unsigned)(c) <= UCHAR_MAX)
1311
1312 #ifndef Min
1313 #define Min(a,b)        ((a) > (b)  ?  (b)  :  (a))
1314 #endif
1315
1316 #ifndef Max
1317 #define Max(a,b)        ((a) < (b)  ?  (b)  :  (a))
1318 #endif
1319
1320 /* usually in <unistd.h> */
1321 #ifndef STDIN_FILENO
1322 #define STDIN_FILENO 0
1323 #endif
1324
1325 #ifndef STDOUT_FILENO
1326 #define STDOUT_FILENO 1
1327 #endif
1328
1329 #ifndef STDERR_FILENO
1330 #define STDERR_FILENO 2
1331 #endif
1332
1333 #ifndef EXIT_SUCCESS
1334 #define EXIT_SUCCESS 0
1335 #endif
1336
1337 #ifndef EXIT_FAILURE
1338 #define EXIT_FAILURE 1
1339 #endif
1340
1341 #ifndef R_OK
1342 #define R_OK    4               /* Test for read permission.  */
1343 #endif
1344 #ifndef W_OK
1345 #define W_OK    2               /* Test for write permission.  */
1346 #endif
1347 #ifndef X_OK
1348 #define X_OK    1               /* Test for execute permission.  */
1349 #endif
1350 #ifndef F_OK
1351 #define F_OK    0               /* Test for existence.  */
1352 #endif
1353
1354 #if HAVE_FCNTL_H
1355 #include <fcntl.h>              /* may define O_BINARY  */
1356 #endif
1357
1358 #ifndef O_BINARY
1359 #define O_BINARY 0
1360 #endif
1361
1362 #ifdef TRACE
1363 #if USE_REENTRANT
1364 #define COUNT_OUTCHARS(n) _nc_count_outchars(n);
1365 #else
1366 #define COUNT_OUTCHARS(n) _nc_outchars += (n);
1367 #endif
1368 #else
1369 #define COUNT_OUTCHARS(n) /* nothing */
1370 #endif
1371
1372 #define RESET_OUTCHARS() COUNT_OUTCHARS(-_nc_outchars)
1373
1374 #define UChar(c)        ((unsigned char)(c))
1375 #define UShort(c)       ((unsigned short)(c))
1376 #define ChCharOf(c)     ((chtype)(c) & (chtype)A_CHARTEXT)
1377 #define ChAttrOf(c)     ((chtype)(c) & (chtype)A_ATTRIBUTES)
1378
1379 #define TR_PUTC(c)      TR(TRACE_CHARPUT, ("PUTC %#x", UChar(c)))
1380
1381 #ifndef MB_LEN_MAX
1382 #define MB_LEN_MAX 16   /* should be >= MB_CUR_MAX, but that may be a function */
1383 #endif
1384
1385 #if USE_WIDEC_SUPPORT /* { */
1386 /* true if the status/errno indicate an illegal multibyte sequence */
1387 #define isEILSEQ(status) (((size_t)status == (size_t)-1) && (errno == EILSEQ))
1388
1389 #define init_mb(state)  memset(&(state), 0, sizeof(state))
1390
1391 #if NCURSES_EXT_COLORS
1392 #define NulColor        , 0
1393 #else
1394 #define NulColor        /* nothing */
1395 #endif
1396
1397 #define NulChar         0,0,0,0 /* FIXME: see CCHARW_MAX */
1398 #define CharOf(c)       ((c).chars[0])
1399 #define AttrOf(c)       ((c).attr)
1400
1401 #define AddAttr(c,a)    AttrOf(c) |=  ((a) & A_ATTRIBUTES)
1402 #define RemAttr(c,a)    AttrOf(c) &= ~((a) & A_ATTRIBUTES)
1403 #define SetAttr(c,a)    AttrOf(c) =   ((a) & A_ATTRIBUTES) | WidecExt(c)
1404
1405 #define NewChar2(c,a)   { a, { c, NulChar } NulColor }
1406 #define NewChar(ch)     NewChar2(ChCharOf(ch), ChAttrOf(ch))
1407
1408 #if CCHARW_MAX == 5
1409 #define CharEq(a,b)     (((a).attr == (b).attr) \
1410                        && (a).chars[0] == (b).chars[0] \
1411                        && (a).chars[1] == (b).chars[1] \
1412                        && (a).chars[2] == (b).chars[2] \
1413                        && (a).chars[3] == (b).chars[3] \
1414                        && (a).chars[4] == (b).chars[4] \
1415                         if_EXT_COLORS(&& (a).ext_color == (b).ext_color))
1416 #elif CCHARW_MAX > 0
1417 #error Inconsistent values for CCHARW_MAX
1418 #else
1419 #define CharEq(a,b)     (!memcmp(&(a), &(b), sizeof(a)))
1420 #endif
1421
1422 #define SetChar(ch,c,a) do {                                                        \
1423                             NCURSES_CH_T *_cp = &(ch);                              \
1424                             memset(_cp, 0, sizeof(ch));                             \
1425                             _cp->chars[0] = (wchar_t) (c);                          \
1426                             _cp->attr = (a);                                        \
1427                             if_EXT_COLORS(SetPair(ch, PairNumber(a)));              \
1428                         } while (0)
1429 #define CHREF(wch)      (&(wch))
1430 #define CHDEREF(wch)    (*(wch))
1431 #define ARG_CH_T        NCURSES_CH_T *
1432 #define CARG_CH_T       const NCURSES_CH_T *
1433 #define PUTC_DATA       char PUTC_buf[MB_LEN_MAX]; int PUTC_i, PUTC_n; \
1434                         mbstate_t PUT_st; wchar_t PUTC_ch
1435 #define PUTC_INIT       init_mb (PUT_st)
1436 #define PUTC(ch)        do { if(!isWidecExt(ch)) {                                  \
1437                         if (Charable(ch)) {                                         \
1438                             TR_PUTC(CharOf(ch));                                    \
1439                             NCURSES_OUTC_FUNC (NCURSES_SP_ARGx CharOf(ch));         \
1440                             COUNT_OUTCHARS(1);                                      \
1441                         } else {                                                    \
1442                             for (PUTC_i = 0; PUTC_i < CCHARW_MAX; ++PUTC_i) {       \
1443                                 PUTC_ch = (ch).chars[PUTC_i];                       \
1444                                 if (PUTC_ch == L'\0')                               \
1445                                     break;                                          \
1446                                 PUTC_INIT;                                          \
1447                                 PUTC_n = (int) wcrtomb(PUTC_buf,                    \
1448                                                        (ch).chars[PUTC_i], &PUT_st); \
1449                                 if (PUTC_n <= 0) {                                  \
1450                                     if (PUTC_ch && is8bits(PUTC_ch) && PUTC_i == 0) { \
1451                                         TR_PUTC(CharOf(ch));                        \
1452                                         NCURSES_OUTC_FUNC (NCURSES_SP_ARGx CharOf(ch)); \
1453                                     }                                               \
1454                                     break;                                          \
1455                                 } else {                                            \
1456                                     int PUTC_j;                                     \
1457                                     for (PUTC_j = 0; PUTC_j < PUTC_n; ++PUTC_j) {   \
1458                                         TR_PUTC(PUTC_buf[PUTC_j]);                  \
1459                                         NCURSES_OUTC_FUNC (NCURSES_SP_ARGx PUTC_buf[PUTC_j]); \
1460                                     }                                               \
1461                                 }                                                   \
1462                             }                                                       \
1463                             COUNT_OUTCHARS(PUTC_i);                                 \
1464                         } } } while (0)
1465
1466 #define BLANK           NewChar2(' ', WA_NORMAL)
1467 #define ZEROS           NewChar2('\0', WA_NORMAL)
1468 #define ISBLANK(ch)     ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0')
1469
1470         /*
1471          * Wide characters cannot be represented in the A_CHARTEXT mask of
1472          * attr_t's but an application might have set a narrow character there.
1473          * But even in that case, it would only be a printable character, or
1474          * zero.  Otherwise we can use those bits to tell if a cell is the
1475          * first or extension part of a wide character.
1476          */
1477 #define WidecExt(ch)    (int) (AttrOf(ch) & A_CHARTEXT)
1478 #define isWidecBase(ch) (WidecExt(ch) == 1)
1479 #define isWidecExt(ch)  (WidecExt(ch) > 1 && WidecExt(ch) < 32)
1480 #define SetWidecExt(dst, ext)   AttrOf(dst) &= ~A_CHARTEXT,             \
1481                                 AttrOf(dst) |= (attr_t) (ext + 1)
1482
1483 #define if_WIDEC(code)  code
1484 #define Charable(ch)    (((SP_PARM->_legacy_coding)                     \
1485                          || (AttrOf(ch) & A_ALTCHARSET)                 \
1486                          || (!isWidecExt(ch))) &&                       \
1487                              (ch).chars[1] == L'\0' &&                  \
1488                              _nc_is_charable(CharOf(ch)))
1489
1490 #define L(ch)           L ## ch
1491 #else /* }{ */
1492 #define CharOf(c)       ChCharOf(c)
1493 #define AttrOf(c)       ChAttrOf(c)
1494 #define AddAttr(c,a)    c |= (a)
1495 #define RemAttr(c,a)    c &= ~((a) & A_ATTRIBUTES)
1496 #define SetAttr(c,a)    c = ((c) & ~A_ATTRIBUTES) | (a)
1497 #define NewChar(ch)     (ch)
1498 #define NewChar2(c,a)   ((c) | (a))
1499 #define CharEq(a,b)     ((a) == (b))
1500 #define SetChar(ch,c,a) ch = (c) | (a)
1501 #define CHREF(wch)      wch
1502 #define CHDEREF(wch)    wch
1503 #define ARG_CH_T        NCURSES_CH_T
1504 #define CARG_CH_T       NCURSES_CH_T
1505 #define PUTC_DATA       /* nothing */
1506 #define PUTC(ch)        { \
1507                             TR_PUTC(ch); \
1508                             NCURSES_OUTC_FUNC (NCURSES_SP_ARGx (int) ch); \
1509                         }
1510
1511 #define BLANK           (' '|A_NORMAL)
1512 #define ZEROS           ('\0'|A_NORMAL)
1513 #define ISBLANK(ch)     (CharOf(ch) == ' ')
1514
1515 #define isWidecExt(ch)  (0)
1516 #define if_WIDEC(code) /* nothing */
1517
1518 #define Charable(ch)    (CharOf(ch) >= ' ' && CharOf(ch) <= '~')
1519 #define L(ch)           ch
1520 #endif /* } */
1521
1522 #define AttrOfD(ch)     AttrOf(CHDEREF(ch))
1523 #define CharOfD(ch)     CharOf(CHDEREF(ch))
1524 #define SetChar2(wch,ch)    SetChar(wch,ChCharOf(ch),ChAttrOf(ch))
1525
1526 #define BLANK_ATTR      A_NORMAL
1527 #define BLANK_TEXT      L(' ')
1528
1529 #define CHANGED     -1
1530
1531 #define LEGALYX(w, y, x) \
1532               ((w) != 0 && \
1533                 ((x) >= 0 && (x) <= (w)->_maxx && \
1534                  (y) >= 0 && (y) <= (w)->_maxy))
1535
1536 #define CHANGED_CELL(line,col) \
1537         if (line->firstchar == _NOCHANGE) \
1538                 line->firstchar = line->lastchar = (NCURSES_SIZE_T) (col); \
1539         else if ((col) < line->firstchar) \
1540                 line->firstchar = (NCURSES_SIZE_T) (col); \
1541         else if ((col) > line->lastchar) \
1542                 line->lastchar = (NCURSES_SIZE_T) (col)
1543
1544 #define CHANGED_RANGE(line,start,end) \
1545         if (line->firstchar == _NOCHANGE \
1546          || line->firstchar > (start)) \
1547                 line->firstchar = (NCURSES_SIZE_T) (start); \
1548         if (line->lastchar == _NOCHANGE \
1549          || line->lastchar < (end)) \
1550                 line->lastchar = (NCURSES_SIZE_T) (end)
1551
1552 #define CHANGED_TO_EOL(line,start,end) \
1553         if (line->firstchar == _NOCHANGE \
1554          || line->firstchar > (start)) \
1555                 line->firstchar = (NCURSES_SIZE_T) (start); \
1556         line->lastchar = (NCURSES_SIZE_T) (end)
1557
1558 #define SIZEOF(v) (sizeof(v)/sizeof(v[0]))
1559
1560 #include <nc_alloc.h>
1561 #include <nc_access.h>
1562
1563 #define FreeIfNeeded(p)  if ((p) != 0) free(p)
1564
1565 /* FreeAndNull() is not a comma-separated expression because some compilers
1566  * do not accept a mixture of void with values.
1567  */
1568 #define FreeAndNull(p)   do { free(p); p = 0; } while (0)
1569
1570 #ifdef EXP_OOM_TESTING
1571 extern NCURSES_EXPORT(void *)   _nc_oom_malloc(size_t size);
1572 extern NCURSES_EXPORT(void *)   _nc_oom_calloc(size_t nmemb, size_t size);
1573 extern NCURSES_EXPORT(void *)   _nc_oom_realloc(void *ptr, size_t size);
1574 extern NCURSES_EXPORT(void)     _nc_oom_free(void *ptr);
1575 extern NCURSES_EXPORT(char *)   _nc_oom_strdup(const char *ptr);
1576 #define malloc(size)            _nc_oom_malloc(size)
1577 #define calloc(nmemb, size)     _nc_oom_calloc(nmemb, size)
1578 #define realloc(ptr, size)      _nc_oom_realloc(ptr, size)
1579 #define free(ptr)               _nc_oom_free(ptr)
1580 #define strdup(ptr)             _nc_oom_strdup(ptr)
1581 #endif
1582
1583 /*
1584  * Use these for tic/infocmp malloc failures.  Generally the ncurses library
1585  * tries to limp along after a failure.
1586  */
1587 #define TYPE_MALLOC(type, size, name) \
1588         do { \
1589             name = typeMalloc(type, size); \
1590             if (name == 0) \
1591                 _nc_err_abort(MSG_NO_MEMORY); \
1592         } while (0)
1593
1594 #define TYPE_CALLOC(type, size, name) \
1595         do { \
1596             name = typeCalloc(type, size); \
1597             if (name == 0) \
1598                 _nc_err_abort(MSG_NO_MEMORY); \
1599         } while (0)
1600
1601 #define TYPE_REALLOC(type, size, name) \
1602         do { \
1603             name = typeRealloc(type, size, name); \
1604             if (name == 0) \
1605                 _nc_err_abort(MSG_NO_MEMORY); \
1606         } while (0)
1607
1608 /*
1609  * TTY bit definition for converting tabs to spaces.
1610  */
1611 #ifdef TAB3
1612 # define OFLAGS_TABS TAB3       /* POSIX specifies TAB3 */
1613 #else
1614 # ifdef XTABS
1615 #  define OFLAGS_TABS XTABS     /* XTABS is usually the "same" */
1616 # else
1617 #  ifdef OXTABS
1618 #   define OFLAGS_TABS OXTABS   /* the traditional BSD equivalent */
1619 #  else
1620 #   define OFLAGS_TABS 0
1621 #  endif
1622 # endif
1623 #endif
1624
1625 #ifdef __TANDEM
1626 #define ROOT_UID 65535
1627 #endif
1628
1629 #ifndef ROOT_UID
1630 #define ROOT_UID 0
1631 #endif
1632
1633 /*
1634  * Standardize/simplify common loops
1635  */
1636 #define each_screen(p) p = _nc_screen_chain; p != 0; p = (p)->_next_screen
1637 #define each_window(sp,p) p = WindowList(sp); p != 0; p = (p)->next
1638 #define each_ripoff(p) p = safe_ripoff_stack; (p - safe_ripoff_stack) < N_RIPS; ++p
1639
1640 /*
1641  * Prefixes for call/return points of library function traces.  We use these to
1642  * instrument the public functions so that the traces can be easily transformed
1643  * into regression scripts.
1644  */
1645 #define T_CALLED(fmt) "called {" fmt
1646 #define T_CREATE(fmt) "create :" fmt
1647 #define T_RETURN(fmt) "return }" fmt
1648
1649 #define NonNull(s)              ((s) != 0 ? s : "<null>")
1650 #define NonEmpty(s)             ((s) != 0 && *(s) != '\0')
1651
1652 #ifdef TRACE
1653
1654 #if USE_REENTRANT
1655 #define TPUTS_TRACE(s)  _nc_set_tputs_trace(s);
1656 #else
1657 #define TPUTS_TRACE(s)  _nc_tputs_trace = s;
1658 #endif
1659
1660 #ifdef HAVE_CONSISTENT_GETENV
1661 #define START_TRACE() \
1662         if ((_nc_tracing & TRACE_MAXIMUM) == 0) { \
1663             int t = _nc_getenv_num("NCURSES_TRACE"); \
1664             if (t >= 0) \
1665                 curses_trace((unsigned) t); \
1666         }
1667 #else
1668 #define START_TRACE() /* nothing */
1669 #endif
1670
1671 /*
1672  * Many of the _tracef() calls use static buffers; lock the trace state before
1673  * trying to fill them.
1674  */
1675 #if USE_REENTRANT
1676 #define USE_TRACEF(mask) _nc_use_tracef(mask)
1677 extern NCURSES_EXPORT(int)      _nc_use_tracef (unsigned);
1678 extern NCURSES_EXPORT(void)     _nc_locked_tracef (const char *, ...) GCC_PRINTFLIKE(1,2);
1679 #else
1680 #define USE_TRACEF(mask) (_nc_tracing & (mask))
1681 #define _nc_locked_tracef _tracef
1682 #endif
1683
1684 #define TR(n, a)        if (USE_TRACEF(n)) _nc_locked_tracef a
1685 #define T(a)            TR(TRACE_CALLS, a)
1686 #define TRACE_RETURN(value,type)     return _nc_retrace_##type((type)(value))
1687 #define TRACE_RETURN1(value,dst)     return _nc_retrace_##dst(value)
1688 #define TRACE_RETURN2(value,dst,src) return _nc_retrace_##dst##_##src(value)
1689 #define TRACE_RETURN_SP(value,type)  return _nc_retrace_##type(SP_PARM, value)
1690
1691 typedef void VoidFunc(void);
1692
1693 #define TR_FUNC_LEN             ((sizeof(void *) + sizeof(void (*)(void))) * 2 + 4)
1694 #define TR_FUNC_BFR(max)        char tr_func_data[max][TR_FUNC_LEN]
1695 #define TR_FUNC_ARG(num,func)   _nc_fmt_funcptr(&tr_func_data[num][0], (const char *)&(func), sizeof((func)))
1696
1697 #define returnAttr(code)        TRACE_RETURN(code,attr_t)
1698 #define returnBits(code)        TRACE_RETURN(code,unsigned)
1699 #define returnBool(code)        TRACE_RETURN(code,bool)
1700 #define returnCPtr(code)        TRACE_RETURN1(code,cptr)
1701 #define returnCVoidPtr(code)    TRACE_RETURN1(code,cvoid_ptr)
1702 #define returnChar(code)        TRACE_RETURN(code,char)
1703 #define returnChtype(code)      TRACE_RETURN(code,chtype)
1704 #define returnCode(code)        TRACE_RETURN(code,int)
1705 #define returnIntAttr(code)     TRACE_RETURN2(code,int,attr_t)
1706 #define returnMMask(code)       TRACE_RETURN_SP(code,mmask_t)
1707 #define returnPtr(code)         TRACE_RETURN1(code,ptr)
1708 #define returnSP(code)          TRACE_RETURN1(code,sp)
1709 #define returnVoid              { T((T_RETURN(""))); return; }
1710 #define returnVoidPtr(code)     TRACE_RETURN1(code,void_ptr)
1711 #define returnWin(code)         TRACE_RETURN1(code,win)
1712
1713 #define returnDB(rc)            do { TR(TRACE_DATABASE,(T_RETURN("code %d"), (rc))); return (rc); } while (0)
1714 #define returnPtrDB(rc)         do { TR(TRACE_DATABASE,(T_RETURN("%p"), (rc))); return (rc); } while (0)
1715 #define returnVoidDB            do { TR(TRACE_DATABASE,(T_RETURN(""))); return; } while (0)
1716
1717 extern NCURSES_EXPORT(NCURSES_BOOL)     _nc_retrace_bool (int);
1718 extern NCURSES_EXPORT(NCURSES_CONST void *) _nc_retrace_cvoid_ptr (NCURSES_CONST void *);
1719 extern NCURSES_EXPORT(SCREEN *)         _nc_retrace_sp (SCREEN *);
1720 extern NCURSES_EXPORT(WINDOW *)         _nc_retrace_win (WINDOW *);
1721 extern NCURSES_EXPORT(attr_t)           _nc_retrace_attr_t (attr_t);
1722 extern NCURSES_EXPORT(char *)           _nc_retrace_ptr (char *);
1723 extern NCURSES_EXPORT(char *)           _nc_trace_ttymode(const TTY *tty);
1724 extern NCURSES_EXPORT(char *)           _nc_varargs (const char *, va_list);
1725 extern NCURSES_EXPORT(chtype)           _nc_retrace_chtype (chtype);
1726 extern NCURSES_EXPORT(const char *)     _nc_altcharset_name(attr_t, chtype);
1727 extern NCURSES_EXPORT(const char *)     _nc_retrace_cptr (const char *);
1728 extern NCURSES_EXPORT(char)             _nc_retrace_char (int);
1729 extern NCURSES_EXPORT(int)              _nc_retrace_int (int);
1730 extern NCURSES_EXPORT(int)              _nc_retrace_int_attr_t (attr_t);
1731 extern NCURSES_EXPORT(mmask_t)          _nc_retrace_mmask_t (SCREEN *, mmask_t);
1732 extern NCURSES_EXPORT(unsigned)         _nc_retrace_unsigned (unsigned);
1733 extern NCURSES_EXPORT(void *)           _nc_retrace_void_ptr (void *);
1734 extern NCURSES_EXPORT(void)             _nc_fifo_dump (SCREEN *);
1735
1736 extern NCURSES_EXPORT(char *)           _nc_fmt_funcptr(char *, const char *, size_t);
1737
1738 #if USE_REENTRANT
1739 NCURSES_WRAPPED_VAR(long, _nc_outchars);
1740 NCURSES_WRAPPED_VAR(const char *, _nc_tputs_trace);
1741 #define _nc_outchars       NCURSES_PUBLIC_VAR(_nc_outchars())
1742 #define _nc_tputs_trace    NCURSES_PUBLIC_VAR(_nc_tputs_trace())
1743 extern NCURSES_EXPORT(void)             _nc_set_tputs_trace (const char *);
1744 extern NCURSES_EXPORT(void)             _nc_count_outchars (long);
1745 #else
1746 extern NCURSES_EXPORT_VAR(const char *) _nc_tputs_trace;
1747 extern NCURSES_EXPORT_VAR(long)         _nc_outchars;
1748 #endif
1749
1750 extern NCURSES_EXPORT_VAR(unsigned)     _nc_tracing;
1751
1752 extern NCURSES_EXPORT(char *) _nc_tracebits (void);
1753 extern NCURSES_EXPORT(char *) _tracemouse (const MEVENT *);
1754 extern NCURSES_EXPORT(void) _tracedump (const char *, WINDOW *);
1755
1756 #if USE_WIDEC_SUPPORT
1757 extern NCURSES_EXPORT(const char *) _nc_viswbuf2 (int, const wchar_t *);
1758 extern NCURSES_EXPORT(const char *) _nc_viswbufn (const wchar_t *, int);
1759 #endif
1760
1761 extern NCURSES_EXPORT(const char *) _nc_viscbuf2 (int, const NCURSES_CH_T *, int);
1762 extern NCURSES_EXPORT(const char *) _nc_viscbuf (const NCURSES_CH_T *, int);
1763
1764 #else /* !TRACE */
1765
1766 #define START_TRACE() /* nothing */
1767
1768 #define T(a)
1769 #define TR(n, a)
1770 #define TPUTS_TRACE(s)
1771 #define TR_FUNC_BFR(max)
1772
1773 #define returnAttr(code)        return code
1774 #define returnBits(code)        return code
1775 #define returnBool(code)        return code
1776 #define returnCPtr(code)        return code
1777 #define returnCVoidPtr(code)    return code
1778 #define returnChar(code)        return ((char) code)
1779 #define returnChtype(code)      return code
1780 #define returnCode(code)        return code
1781 #define returnIntAttr(code)     return code
1782 #define returnMMask(code)       return code
1783 #define returnPtr(code)         return code
1784 #define returnSP(code)          return code
1785 #define returnVoid              return
1786 #define returnVoidPtr(code)     return code
1787 #define returnWin(code)         return code
1788
1789 #define returnDB(code)          return code
1790 #define returnPtrDB(rc)         return rc
1791 #define returnVoidDB            return
1792
1793 #endif /* TRACE/!TRACE */
1794
1795 /*
1796  * Workaround for defective implementation of gcc attribute warn_unused_result
1797  */
1798 #if defined(__GNUC__) && defined(_FORTIFY_SOURCE)
1799 #define IGNORE_RC(func) errno = (int) func
1800 #else
1801 #define IGNORE_RC(func) (void) func
1802 #endif /* gcc workarounds */
1803
1804 /*
1805  * Return-codes for tgetent() and friends.
1806  */
1807 #define TGETENT_YES  1          /* entry is found */
1808 #define TGETENT_NO   0          /* entry is not found */
1809 #define TGETENT_ERR -1          /* an error occurred */
1810
1811 extern NCURSES_EXPORT(const char *) _nc_visbuf2 (int, const char *);
1812 extern NCURSES_EXPORT(const char *) _nc_visbufn (const char *, int);
1813
1814 #define EMPTY_MODULE(name) \
1815 extern  NCURSES_EXPORT(void) name (void); \
1816         NCURSES_EXPORT(void) name (void) { }
1817
1818 #define ALL_BUT_COLOR ((chtype)~(A_COLOR))
1819 #define NONBLANK_ATTR (A_BOLD | A_DIM | A_BLINK | A_ITALIC)
1820 #define TPARM_ATTR    (A_STANDOUT | A_UNDERLINE | A_REVERSE | A_BLINK | A_DIM | A_BOLD | A_ALTCHARSET | A_INVIS | A_PROTECT)
1821 #define XMC_CONFLICT  (A_STANDOUT | A_UNDERLINE | A_REVERSE | A_BLINK | A_DIM | A_BOLD | A_INVIS | A_PROTECT | A_ITALIC)
1822 #define XMC_CHANGES(c) ((c) & SP_PARM->_xmc_suppress)
1823
1824 #define toggle_attr_on(S,at) {\
1825    if (PairNumber(at) > 0) {\
1826       (S) = ((S) & ALL_BUT_COLOR) | (attr_t) (at);\
1827    } else {\
1828       (S) |= (attr_t) (at);\
1829    }\
1830    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1831
1832
1833 #define toggle_attr_off(S,at) {\
1834    if (PairNumber(at) > 0) {\
1835       (S) &= ~(at|A_COLOR);\
1836    } else {\
1837       (S) &= ~(at);\
1838    }\
1839    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1840
1841 #define DelCharCost(sp,count) \
1842                 ((parm_dch != 0) \
1843                 ? sp->_dch_cost \
1844                 : ((delete_character != 0) \
1845                         ? (sp->_dch1_cost * count) \
1846                         : INFINITY))
1847
1848 #define InsCharCost(sp,count) \
1849                 ((parm_ich != 0) \
1850                 ? sp->_ich_cost \
1851                 : ((enter_insert_mode && exit_insert_mode) \
1852                   ? sp->_smir_cost + sp->_rmir_cost + (sp->_ip_cost * count) \
1853                   : ((insert_character != 0) \
1854                     ? ((sp->_ich1_cost + sp->_ip_cost) * count) \
1855                     : INFINITY)))
1856
1857 #if USE_XMC_SUPPORT
1858 #define UpdateAttrs(sp,c) if (!SameAttrOf(SCREEN_ATTRS(sp), c)) { \
1859                                 attr_t chg = AttrOf(SCREEN_ATTRS(sp)); \
1860                                 VIDPUTS(sp, AttrOf(c), GetPair(c)); \
1861                                 if (magic_cookie_glitch > 0 \
1862                                  && XMC_CHANGES((chg ^ AttrOf(SCREEN_ATTRS(sp))))) { \
1863                                         T(("%s @%d before glitch %d,%d", \
1864                                                 __FILE__, __LINE__, \
1865                                                 sp->_cursrow, \
1866                                                 sp->_curscol)); \
1867                                         NCURSES_SP_NAME(_nc_do_xmc_glitch)(NCURSES_SP_ARGx chg); \
1868                                 } \
1869                         }
1870 #else
1871 #define UpdateAttrs(sp,c) if (!SameAttrOf(SCREEN_ATTRS(sp), c)) { \
1872                                     VIDPUTS(sp, AttrOf(c), GetPair(c)); \
1873                         }
1874 #endif
1875
1876 /*
1877  * Macros to make additional parameter to implement wgetch_events()
1878  */
1879 #ifdef NCURSES_WGETCH_EVENTS
1880 #define EVENTLIST_0th(param) param
1881 #define EVENTLIST_1st(param) param
1882 #define EVENTLIST_2nd(param) , param
1883 #define TWAIT_MASK (TW_ANY | TW_EVENT)
1884 #else
1885 #define EVENTLIST_0th(param) void
1886 #define EVENTLIST_1st(param) /* nothing */
1887 #define EVENTLIST_2nd(param) /* nothing */
1888 #define TWAIT_MASK TW_ANY
1889 #endif
1890
1891 #if NCURSES_EXPANDED && NCURSES_EXT_FUNCS
1892
1893 #undef  toggle_attr_on
1894 #define toggle_attr_on(S,at) _nc_toggle_attr_on(&(S), at)
1895 extern NCURSES_EXPORT(void) _nc_toggle_attr_on (attr_t *, attr_t);
1896
1897 #undef  toggle_attr_off
1898 #define toggle_attr_off(S,at) _nc_toggle_attr_off(&(S), at)
1899 extern NCURSES_EXPORT(void) _nc_toggle_attr_off (attr_t *, attr_t);
1900
1901 #undef  DelCharCost
1902 #define DelCharCost(sp, count) NCURSES_SP_NAME(_nc_DelCharCost)(NCURSES_SP_ARGx count)
1903
1904 #undef  InsCharCost
1905 #define InsCharCost(sp, count) NCURSES_SP_NAME(_nc_InsCharCost)(NCURSES_SP_ARGx count)
1906
1907 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(_nc_DelCharCost) (NCURSES_SP_DCLx int _c);
1908 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(_nc_InsCharCost) (NCURSES_SP_DCLx int _c);
1909
1910 #undef  UpdateAttrs
1911 #define UpdateAttrs(sp,c) NCURSES_SP_NAME(_nc_UpdateAttrs)(NCURSES_SP_ARGx CHREF(c))
1912
1913 #if USE_WIDEC_SUPPORT || defined(NEED_NCURSES_CH_T)
1914 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_UpdateAttrs) (NCURSES_SP_DCLx CARG_CH_T _c);
1915 #else
1916 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_UpdateAttrs) (NCURSES_SP_DCLx chtype c);
1917 #endif
1918
1919 #if NCURSES_SP_FUNCS
1920 extern NCURSES_EXPORT(int) _nc_DelCharCost (int);
1921 extern NCURSES_EXPORT(int) _nc_InsCharCost (int);
1922 extern NCURSES_EXPORT(void) _nc_UpdateAttrs (CARG_CH_T);
1923 #endif /* NCURSES_SP_FUNCS */
1924
1925 #else
1926
1927 extern NCURSES_EXPORT(void) _nc_expanded (void);
1928
1929 #endif
1930
1931 #if !NCURSES_EXT_FUNCS
1932 #define set_escdelay(value) ESCDELAY = value
1933 #endif
1934
1935 #if !HAVE_GETCWD
1936 #define getcwd(buf,len) getwd(buf)
1937 #endif
1938
1939 #define save_ttytype(termp) \
1940         if (TerminalType(termp).term_names != 0) { \
1941             _nc_STRNCPY(ttytype, \
1942                         TerminalType(termp).term_names, \
1943                         NAMESIZE - 1); \
1944             ttytype[NAMESIZE - 1] = '\0'; \
1945         }
1946
1947 #if !NCURSES_WCWIDTH_GRAPHICS
1948 extern NCURSES_EXPORT(int) _nc_wacs_width(unsigned);
1949 #else
1950 #define _nc_wacs_width(ch) wcwidth(ch)
1951 #endif
1952
1953 /* charable.c */
1954 #if USE_WIDEC_SUPPORT
1955 extern NCURSES_EXPORT(bool) _nc_is_charable(wchar_t);
1956 extern NCURSES_EXPORT(int) _nc_to_char(wint_t);
1957 extern NCURSES_EXPORT(wint_t) _nc_to_widechar(int);
1958 #endif
1959
1960 /* comp_captab.c */
1961 typedef struct {
1962         short   nte_name;       /* offset of name to hash on */
1963         int     nte_type;       /* BOOLEAN, NUMBER or STRING */
1964         short   nte_index;      /* index of associated variable in its array */
1965         short   nte_link;       /* index in table of next hash, or -1 */
1966 } name_table_data;
1967
1968 typedef struct
1969 {
1970         short   from;
1971         short   to;
1972         short   source;
1973 } alias_table_data;
1974
1975 /* comp_userdefs.c */
1976 typedef struct {
1977         short   ute_name;       /* offset of name to hash on */
1978         unsigned ute_type;      /* mask (BOOLEAN, NUMBER, STRING) */
1979         unsigned ute_argc;      /* number of parameters */
1980         unsigned ute_args;      /* bit-mask for string parameters */
1981         short   ute_index;      /* index of associated variable in its array */
1982         short   ute_link;       /* index in table of next hash, or -1 */
1983 } user_table_data;
1984
1985 /* doupdate.c */
1986 #if USE_XMC_SUPPORT
1987 extern NCURSES_EXPORT(void) _nc_do_xmc_glitch (attr_t);
1988 #endif
1989
1990 /* hardscroll.c */
1991 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
1992 extern NCURSES_EXPORT(void) _nc_linedump (void);
1993 #endif
1994
1995 /* lib_acs.c */
1996 extern NCURSES_EXPORT(void) _nc_init_acs (void); /* corresponds to traditional 'init_acs()' */
1997 extern NCURSES_EXPORT(int)  _nc_msec_cost (const char *const, int);
1998
1999 /* lib_addch.c */
2000 #if USE_WIDEC_SUPPORT
2001 extern NCURSES_EXPORT(int) _nc_build_wch(WINDOW *win, ARG_CH_T ch);
2002 #endif
2003
2004 /* lib_addstr.c */
2005 #if USE_WIDEC_SUPPORT && !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
2006 extern NCURSES_EXPORT(int) _nc_wchstrlen(const cchar_t *);
2007 #endif
2008
2009 /* lib_color.c */
2010 extern NCURSES_EXPORT(int) _nc_init_color(SCREEN *, int, int, int, int);
2011 extern NCURSES_EXPORT(int) _nc_init_pair(SCREEN *, int, int, int);
2012 extern NCURSES_EXPORT(int) _nc_pair_content(SCREEN *, int, int *, int *);
2013 extern NCURSES_EXPORT(bool) _nc_reset_colors(void);
2014 extern NCURSES_EXPORT(void) _nc_reserve_pairs(SCREEN *, int);
2015 extern NCURSES_EXPORT(void) _nc_change_pair(SCREEN *, int);
2016
2017 #define ReservePairs(sp,want) \
2018             if ((sp->_color_pairs == 0) || (want >= sp->_pair_alloc)) \
2019                 _nc_reserve_pairs(sp, want)
2020
2021 /* lib_getch.c */
2022 extern NCURSES_EXPORT(int) _nc_wgetch(WINDOW *, int *, int EVENTLIST_2nd(_nc_eventlist *));
2023
2024 /* lib_insch.c */
2025 extern NCURSES_EXPORT(int) _nc_insert_ch(SCREEN *, WINDOW *, chtype);
2026
2027 /* lib_mvcur.c */
2028 #define INFINITY        1000000 /* cost: too high to use */
2029
2030 extern NCURSES_EXPORT(int) _nc_mvcur(int yold, int xold, int ynew, int xnew);
2031
2032 extern NCURSES_EXPORT(void) _nc_mvcur_init (void);
2033 extern NCURSES_EXPORT(void) _nc_mvcur_resume (void);
2034 extern NCURSES_EXPORT(void) _nc_mvcur_wrap (void);
2035
2036 extern NCURSES_EXPORT(int) _nc_scrolln (int, int, int, int);
2037
2038 extern NCURSES_EXPORT(void) _nc_screen_init (void);
2039 extern NCURSES_EXPORT(void) _nc_screen_resume (void);
2040 extern NCURSES_EXPORT(void) _nc_screen_wrap (void);
2041
2042 /* lib_mouse.c */
2043 extern NCURSES_EXPORT(bool) _nc_has_mouse (SCREEN *);
2044
2045 /* lib_mvcur.c */
2046 #define INFINITY        1000000 /* cost: too high to use */
2047 #define BAUDBYTE        9       /* 9 = 7 bits + 1 parity + 1 stop */
2048
2049 /* lib_setup.c */
2050 extern NCURSES_EXPORT(char *) _nc_get_locale(void);
2051 extern NCURSES_EXPORT(int)    _nc_unicode_locale(void);
2052 extern NCURSES_EXPORT(int)    _nc_locale_breaks_acs(TERMINAL *);
2053 extern NCURSES_EXPORT(int)    _nc_setupterm(const char *, int, int *, int);
2054 extern NCURSES_EXPORT(void)   _nc_tinfo_cmdch(TERMINAL *, int);
2055
2056 #ifdef USE_PTHREADS
2057 extern NCURSES_EXPORT(SCREEN *) _nc_find_prescr(void);
2058 extern NCURSES_EXPORT(void)   _nc_forget_prescr(void);
2059 #else
2060 #define _nc_find_prescr()     _nc_prescreen.allocated
2061 #define _nc_forget_prescr()   _nc_prescreen.allocated = 0
2062 #endif
2063
2064 /* lib_set_term.c */
2065 extern NCURSES_EXPORT(int)    _nc_ripoffline(int, int(*)(WINDOW*, int));
2066
2067 /* lib_setup.c */
2068 #define ExitTerminfo(code)    exit_terminfo(code)
2069
2070 #define SETUP_FAIL ERR
2071
2072 #define ret_error(rc, fmt, p, q)        if (errret) {\
2073                                             *errret = rc;\
2074                                             q;\
2075                                             returnCode(SETUP_FAIL);\
2076                                         } else {\
2077                                             fprintf(stderr, fmt, p);\
2078                                             q;\
2079                                             ExitTerminfo(EXIT_FAILURE);\
2080                                         }
2081
2082 #define ret_error1(rc, fmt, p, q)       ret_error(rc, "'%s': " fmt, p, q)
2083
2084 #define ret_error0(rc, msg)             if (errret) {\
2085                                             *errret = rc;\
2086                                             returnCode(SETUP_FAIL);\
2087                                         } else {\
2088                                             fprintf(stderr, msg);\
2089                                             ExitTerminfo(EXIT_FAILURE);\
2090                                         }
2091
2092 /* lib_tstp.c */
2093 #if USE_SIGWINCH
2094 extern NCURSES_EXPORT(int) _nc_handle_sigwinch(SCREEN *);
2095 #else
2096 #define _nc_handle_sigwinch(a) /* nothing */
2097 #endif
2098
2099 /* lib_wacs.c */
2100 #if USE_WIDEC_SUPPORT
2101 extern NCURSES_EXPORT(void) _nc_init_wacs(void);
2102 #endif
2103
2104 typedef struct {
2105     char *s_head;       /* beginning of the string (may be null) */
2106     char *s_tail;       /* end of the string (may be null) */
2107     size_t s_size;      /* current remaining size available */
2108     size_t s_init;      /* total size available */
2109 } string_desc;
2110
2111 /* strings.c */
2112 extern NCURSES_EXPORT(string_desc *) _nc_str_init (string_desc *, char *, size_t);
2113 extern NCURSES_EXPORT(string_desc *) _nc_str_null (string_desc *, size_t);
2114 extern NCURSES_EXPORT(string_desc *) _nc_str_copy (string_desc *, const string_desc *);
2115 extern NCURSES_EXPORT(bool) _nc_safe_strcat (string_desc *, const char *);
2116 extern NCURSES_EXPORT(bool) _nc_safe_strcpy (string_desc *, const char *);
2117
2118 #if !HAVE_STRSTR
2119 #define strstr _nc_strstr
2120 extern NCURSES_EXPORT(char *) _nc_strstr (const char *, const char *);
2121 #endif
2122
2123 /* safe_sprintf.c */
2124 extern NCURSES_EXPORT(char *) _nc_printf_string (const char *, va_list);
2125
2126 /* tries.c */
2127 extern NCURSES_EXPORT(int) _nc_add_to_try (TRIES **, const char *, unsigned);
2128 extern NCURSES_EXPORT(char *) _nc_expand_try (TRIES *, unsigned, int *, size_t);
2129 extern NCURSES_EXPORT(int) _nc_remove_key (TRIES **, unsigned);
2130 extern NCURSES_EXPORT(int) _nc_remove_string (TRIES **, const char *);
2131
2132 /* elsewhere ... */
2133 extern NCURSES_EXPORT(SCREEN *) _nc_screen_of (WINDOW *);
2134 extern NCURSES_EXPORT(TERMINAL*) _nc_get_cur_term (void);
2135 extern NCURSES_EXPORT(WINDOW *) _nc_makenew (int, int, int, int, int);
2136 extern NCURSES_EXPORT(char *) _nc_trace_buf (int, size_t);
2137 extern NCURSES_EXPORT(char *) _nc_trace_bufcat (int, const char *);
2138 extern NCURSES_EXPORT(char *) _nc_tracechar (SCREEN *, int);
2139 extern NCURSES_EXPORT(char *) _nc_tracemouse (SCREEN *, MEVENT const *);
2140 extern NCURSES_EXPORT(char *) _nc_trace_mmask_t (SCREEN *, mmask_t);
2141 extern NCURSES_EXPORT(int) _nc_access (const char *, int);
2142 extern NCURSES_EXPORT(int) _nc_baudrate (int);
2143 extern NCURSES_EXPORT(int) _nc_freewin (WINDOW *);
2144 extern NCURSES_EXPORT(int) _nc_getenv_num (const char *);
2145 extern NCURSES_EXPORT(int) _nc_keypad (SCREEN *, int);
2146 extern NCURSES_EXPORT(int) _nc_ospeed (int);
2147 extern NCURSES_EXPORT(int) _nc_outch (int);
2148 extern NCURSES_EXPORT(int) _nc_putchar (int);
2149 extern NCURSES_EXPORT(int) _nc_putp(const char *, const char *);
2150 extern NCURSES_EXPORT(int) _nc_putp_flush(const char *, const char *);
2151 extern NCURSES_EXPORT(int) _nc_read_termcap_entry (const char *const, TERMTYPE2 *const);
2152 extern NCURSES_EXPORT(int) _nc_setup_tinfo(const char *, TERMTYPE2 *);
2153 extern NCURSES_EXPORT(int) _nc_setupscreen (int, int, FILE *, int, int);
2154 extern NCURSES_EXPORT(int) _nc_timed_wait (SCREEN *, int, int, int * EVENTLIST_2nd(_nc_eventlist *));
2155 extern NCURSES_EXPORT(int) _nc_trans_string (char *, const char *);
2156 extern NCURSES_EXPORT(void) _nc_init_termtype (TERMTYPE2 *const);
2157 extern NCURSES_EXPORT(void) _nc_do_color (int, int, int, NCURSES_OUTC);
2158 extern NCURSES_EXPORT(void) _nc_flush (void);
2159 extern NCURSES_EXPORT(void) _nc_free_entry (ENTRY *, TERMTYPE2 *);
2160 extern NCURSES_EXPORT(void) _nc_freeall (void);
2161 extern NCURSES_EXPORT(void) _nc_hash_map (void);
2162 extern NCURSES_EXPORT(void) _nc_init_keytry (SCREEN *);
2163 extern NCURSES_EXPORT(void) _nc_keep_tic_dir (const char *);
2164 extern NCURSES_EXPORT(void) _nc_make_oldhash (int i);
2165 extern NCURSES_EXPORT(void) _nc_reset_input (FILE *, char *);
2166 extern NCURSES_EXPORT(void) _nc_scroll_oldhash (int n, int top, int bot);
2167 extern NCURSES_EXPORT(void) _nc_scroll_optimize (void);
2168 extern NCURSES_EXPORT(void) _nc_set_buffer (FILE *, int);
2169 extern NCURSES_EXPORT(void) _nc_setenv_num (const char *, int);
2170 extern NCURSES_EXPORT(void) _nc_signal_handler (int);
2171 extern NCURSES_EXPORT(void) _nc_synchook (WINDOW *);
2172 extern NCURSES_EXPORT(void) _nc_trace_tries (TRIES *);
2173
2174 #if NCURSES_EXT_NUMBERS
2175 extern NCURSES_EXPORT(const TERMTYPE2 *) _nc_fallback2 (const char *);
2176 #else
2177 #define _nc_fallback2(tp) _nc_fallback(tp)
2178 #endif
2179
2180 extern NCURSES_EXPORT(void) _nc_copy_termtype(TERMTYPE *, const TERMTYPE *);
2181
2182 #if NCURSES_EXT_NUMBERS
2183 extern NCURSES_EXPORT(void) _nc_copy_termtype2 (TERMTYPE2 *, const TERMTYPE2 *);
2184 extern NCURSES_EXPORT(void) _nc_export_termtype2(TERMTYPE *, const TERMTYPE2 *);
2185 #else
2186 #define _nc_copy_termtype2(dst,src) _nc_copy_termtype((dst),(src))
2187 #define _nc_export_termtype2(dst,src) /* nothing */
2188 #define _nc_free_termtype2(t) _nc_free_termtype(t)
2189 /* also... */
2190 #define _nc_read_entry2 _nc_read_entry
2191 #endif
2192
2193 #if NO_LEAKS
2194 extern NCURSES_EXPORT(void) _nc_alloc_entry_leaks(void);
2195 extern NCURSES_EXPORT(void) _nc_captoinfo_leaks(void);
2196 extern NCURSES_EXPORT(void) _nc_codes_leaks(void);
2197 extern NCURSES_EXPORT(void) _nc_comp_captab_leaks(void);
2198 extern NCURSES_EXPORT(void) _nc_comp_error_leaks(void);
2199 extern NCURSES_EXPORT(void) _nc_comp_scan_leaks(void);
2200 extern NCURSES_EXPORT(void) _nc_comp_userdefs_leaks(void);
2201 extern NCURSES_EXPORT(void) _nc_db_iterator_leaks(void);
2202 extern NCURSES_EXPORT(void) _nc_keyname_leaks(void);
2203 extern NCURSES_EXPORT(void) _nc_names_leaks(void);
2204 extern NCURSES_EXPORT(void) _nc_tgetent_leak(const TERMINAL *);
2205 extern NCURSES_EXPORT(void) _nc_tgetent_leaks(void);
2206 #endif
2207
2208 #if !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
2209 extern NCURSES_EXPORT(NCURSES_CH_T) _nc_render (WINDOW *, NCURSES_CH_T);
2210 extern NCURSES_EXPORT(int) _nc_waddch_nosync (WINDOW *, const NCURSES_CH_T);
2211 extern NCURSES_EXPORT(void) _nc_scroll_window (WINDOW *, int const, int const, int const, NCURSES_CH_T);
2212 #endif
2213
2214 #if USE_WIDEC_SUPPORT
2215 extern NCURSES_EXPORT(int) _nc_insert_wch(WINDOW *, const cchar_t *);
2216 #endif
2217
2218 #if USE_WIDEC_SUPPORT && !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
2219 extern NCURSES_EXPORT(size_t) _nc_wcrtomb (char *, wchar_t, mbstate_t *);
2220 #endif
2221
2222 #if USE_SIZECHANGE
2223 extern NCURSES_EXPORT(void) _nc_update_screensize (SCREEN *);
2224 #endif
2225
2226 #if HAVE_RESIZETERM
2227 extern NCURSES_EXPORT(void) _nc_resize_margins (WINDOW *);
2228 #else
2229 #define _nc_resize_margins(wp) /* nothing */
2230 #endif
2231
2232 #ifdef NCURSES_WGETCH_EVENTS
2233 extern NCURSES_EXPORT(int) _nc_eventlist_timeout(_nc_eventlist *);
2234 #else
2235 #define wgetch_events(win, evl) wgetch(win)
2236 #define wgetnstr_events(win, str, maxlen, evl) wgetnstr(win, str, maxlen)
2237 #endif
2238
2239 /*
2240  * Wide-character macros to hide some platform-differences.
2241  */
2242 #if USE_WIDEC_SUPPORT
2243
2244 #if defined(_NC_WINDOWS) && !defined(_NC_MSC) && !defined(EXP_WIN32_DRIVER)
2245 /*
2246  * MinGW has wide-character functions, but they do not work correctly.
2247  */
2248 extern int __MINGW_NOTHROW _nc_wctomb(char *, wchar_t);
2249 #define wctomb(s,wc) _nc_wctomb(s,wc)
2250 #define wcrtomb(s,wc,n) _nc_wctomb(s,wc)
2251
2252 extern int __MINGW_NOTHROW _nc_mbtowc(wchar_t *, const char *, size_t);
2253 #define mbtowc(pwc,s,n) _nc_mbtowc(pwc,s,n)
2254
2255 extern int __MINGW_NOTHROW _nc_mblen(const char *, size_t);
2256 #define mblen(s,n) _nc_mblen(s, n)
2257
2258 #endif /* _NC_WINDOWS && !_NC_MSC */
2259
2260 #if defined(_NC_WINDOWS) || defined(_NC_MINGW)
2261 /* see wcwidth.c */
2262 extern NCURSES_EXPORT(int) mk_wcwidth(wchar_t);
2263 #define wcwidth(ucs) _nc_wcwidth(ucs)
2264 #endif
2265
2266 #if HAVE_MBTOWC && HAVE_MBLEN
2267 #define reset_mbytes(state) IGNORE_RC(mblen(NULL, (size_t) 0)), IGNORE_RC(mbtowc(NULL, NULL, (size_t) 0))
2268 #define count_mbytes(buffer,length,state) mblen(buffer,length)
2269 #define check_mbytes(wch,buffer,length,state) \
2270         (int) mbtowc(&(wch), buffer, length)
2271 #define state_unused
2272 #elif HAVE_MBRTOWC && HAVE_MBRLEN
2273 #define reset_mbytes(state) init_mb(state)
2274 #define count_mbytes(buffer,length,state) mbrlen(buffer,length,&(state))
2275 #define check_mbytes(wch,buffer,length,state) \
2276         (int) mbrtowc(&(wch), buffer, length, &(state))
2277 #else
2278 make an error
2279 #endif
2280
2281 #endif /* USE_WIDEC_SUPPORT */
2282
2283 /*
2284  * Not everyone has vsscanf(), but we'd like to use it for scanw().
2285  */
2286 #if !HAVE_VSSCANF
2287 extern int vsscanf(const char *str, const char *format, va_list __arg);
2288 #endif
2289
2290 /* scroll indices */
2291 extern NCURSES_EXPORT_VAR(int *) _nc_oldnums;
2292
2293 #define USE_SETBUF_0 0
2294
2295 #define NC_OUTPUT(sp) ((sp != 0 && sp->_ofp != 0) ? sp->_ofp : stdout)
2296
2297 /*
2298  * On systems with a broken linker, define 'SP' as a function to force the
2299  * linker to pull in the data-only module with 'SP'.
2300  */
2301 #define _nc_alloc_screen_sp() typeCalloc(SCREEN, 1)
2302
2303 #if BROKEN_LINKER
2304 #define SP _nc_screen()
2305 extern NCURSES_EXPORT(SCREEN *) _nc_screen (void);
2306 extern NCURSES_EXPORT(int)      _nc_alloc_screen (void);
2307 extern NCURSES_EXPORT(void)     _nc_set_screen (SCREEN *);
2308 #define CURRENT_SCREEN          _nc_screen()
2309 #else
2310 /* current screen is private data; avoid possible linking conflicts too */
2311 extern NCURSES_EXPORT_VAR(SCREEN *) SP;
2312 #define CURRENT_SCREEN SP
2313 #define _nc_alloc_screen()      ((SP = _nc_alloc_screen_sp()) != 0)
2314 #define _nc_set_screen(sp)      SP = sp
2315 #endif
2316
2317 #if NCURSES_SP_FUNCS
2318 #define CURRENT_SCREEN_PRE      (IsPreScreen(CURRENT_SCREEN) ? CURRENT_SCREEN : new_prescr())
2319 #else
2320 #define CURRENT_SCREEN_PRE      CURRENT_SCREEN
2321 #endif
2322
2323 /*
2324  * We don't want to use the lines or columns capabilities internally, because
2325  * if the application is running multiple screens under X, it is quite possible
2326  * they could all have type xterm but have different sizes!  So...
2327  */
2328 #define screen_lines(sp)        (sp)->_lines
2329 #define screen_columns(sp)      (sp)->_columns
2330
2331 extern NCURSES_EXPORT(int) _nc_slk_initialize (WINDOW *, int);
2332 extern NCURSES_EXPORT(int) _nc_format_slks (NCURSES_SP_DCLx int _c);
2333
2334 /*
2335  * Some constants related to SLK's
2336  */
2337 #define MAX_SKEY_OLD       8    /* count of soft keys */
2338 #define MAX_SKEY_LEN_OLD   8    /* max length of soft key text */
2339 #define MAX_SKEY_PC       12    /* This is what most PC's have */
2340 #define MAX_SKEY_LEN_PC    5
2341
2342 /* Macro to check whether or not we use a standard format */
2343 #define SLK_STDFMT(fmt) (fmt < 3)
2344 /* Macro to determine height of label window */
2345 #define SLK_LINES(fmt)  (SLK_STDFMT(fmt) ? 1 : ((fmt) - 2))
2346
2347 #define MAX_SKEY(fmt)     (SLK_STDFMT(fmt)? MAX_SKEY_OLD : MAX_SKEY_PC)
2348 #define MAX_SKEY_LEN(fmt) (SLK_STDFMT(fmt)? MAX_SKEY_LEN_OLD : MAX_SKEY_LEN_PC)
2349
2350 /*
2351  * Common error messages
2352  */
2353 #define MSG_NO_MEMORY "Out of memory"
2354 #define MSG_NO_INPUTS "Premature EOF"
2355
2356 extern NCURSES_EXPORT(int) _nc_set_tty_mode(TTY *);
2357 extern NCURSES_EXPORT(int) _nc_get_tty_mode(TTY *);
2358
2359 /* timed_wait flag definitions */
2360 #define TW_NONE    0
2361 #define TW_INPUT   1
2362 #define TW_MOUSE   2
2363 #define TW_ANY     (TW_INPUT | TW_MOUSE)
2364 #define TW_EVENT   4
2365
2366 #define SetSafeOutcWrapper(outc)            \
2367     SCREEN* sp = CURRENT_SCREEN;            \
2368     struct screen outc_wrapper;             \
2369     if (sp==0) {                            \
2370         sp = &outc_wrapper;                 \
2371         memset(sp,0,sizeof(struct screen)); \
2372         sp->_outch = _nc_outc_wrapper;      \
2373     }\
2374     sp->jump = outc
2375
2376 #ifdef USE_TERM_DRIVER
2377
2378 typedef struct _termInfo
2379 {
2380     bool caninit;
2381
2382     bool hascolor;
2383     bool initcolor;
2384     bool canchange;
2385
2386     int  tabsize;
2387
2388     int  maxcolors;
2389     int  maxpairs;
2390     int  nocolorvideo;
2391
2392     int  numbuttons;
2393     int  numlabels;
2394     int  labelwidth;
2395     int  labelheight;
2396
2397     const color_t* defaultPalette;
2398 } TerminalInfo;
2399
2400 typedef struct term_driver {
2401     bool   isTerminfo;
2402     const char* (*td_name)(struct DriverTCB*);
2403     bool   (*td_CanHandle)(struct DriverTCB*, const char*, int*);
2404     void   (*td_init)(struct DriverTCB*);
2405     void   (*td_release)(struct DriverTCB*);
2406     int    (*td_size)(struct DriverTCB*, int* Line, int *Cols);
2407     int    (*td_sgmode)(struct DriverTCB*, int setFlag, TTY*);
2408     chtype (*td_conattr)(struct DriverTCB*);
2409     int    (*td_hwcur)(struct DriverTCB*, int yold, int xold, int y, int x);
2410     int    (*td_mode)(struct DriverTCB*, int progFlag, int defFlag);
2411     bool   (*td_rescol)(struct DriverTCB*);
2412     bool   (*td_rescolors)(struct DriverTCB*);
2413     void   (*td_color)(struct DriverTCB*, int fore, int color, int(*)(SCREEN*, int));
2414     int    (*td_doBeepOrFlash)(struct DriverTCB*, int);
2415     void   (*td_initpair)(struct DriverTCB*, int, int, int);
2416     void   (*td_initcolor)(struct DriverTCB*, int, int, int, int);
2417     void   (*td_docolor)(struct DriverTCB*, int, int, int, int(*)(SCREEN*, int));
2418     void   (*td_initmouse)(struct DriverTCB*);
2419     int    (*td_testmouse)(struct DriverTCB*, int EVENTLIST_2nd(_nc_eventlist*));
2420     void   (*td_setfilter)(struct DriverTCB*);
2421     void   (*td_hwlabel)(struct DriverTCB*, int, char*);
2422     void   (*td_hwlabelOnOff)(struct DriverTCB*, int);
2423     int    (*td_update)(struct DriverTCB*);
2424     int    (*td_defaultcolors)(struct DriverTCB*, int, int);
2425     int    (*td_print)(struct DriverTCB*, char*, int);
2426     int    (*td_getsize)(struct DriverTCB*, int*, int*);
2427     int    (*td_setsize)(struct DriverTCB*, int, int);
2428     void   (*td_initacs)(struct DriverTCB*, chtype*, chtype*);
2429     void   (*td_scinit)(SCREEN *);
2430     void   (*td_scexit)(SCREEN *);
2431     int    (*td_twait)(struct DriverTCB*, int, int, int* EVENTLIST_2nd(_nc_eventlist*));
2432     int    (*td_read)(struct DriverTCB*, int*);
2433     int    (*td_nap)(struct DriverTCB*, int);
2434     int    (*td_kpad)(struct DriverTCB*, int);
2435     int    (*td_kyOk)(struct DriverTCB*, int, int);
2436     bool   (*td_kyExist)(struct DriverTCB*, int);
2437     int    (*td_cursorSet)(struct DriverTCB*, int);
2438 } TERM_DRIVER;
2439
2440 typedef struct DriverTCB
2441 {
2442     TERMINAL      term;   /* needs to be the first Element !!! */
2443     TERM_DRIVER*  drv;    /* The driver for that Terminal */
2444     SCREEN*       csp;    /* The screen that owns that Terminal */
2445     TerminalInfo  info;   /* Driver independent core capabilities of the Terminal */
2446     void*         prop;   /* Driver dependent property storage to be used by the Driver */
2447     long          magic;
2448 } TERMINAL_CONTROL_BLOCK;
2449
2450 #define NCDRV_MAGIC(id) (0x47110000 | (id&0xffff))
2451 #define NCDRV_TINFO      0x01
2452 #define NCDRV_WINCONSOLE 0x02
2453
2454 #define TCBOf(sp)    ((TERMINAL_CONTROL_BLOCK*)(TerminalOf(sp)))
2455 #define InfoOf(sp)   TCBOf(sp)->info
2456 #define CallDriver(sp,method)                        TCBOf(sp)->drv->method(TCBOf(sp))
2457 #define CallDriver_1(sp,method,arg1)                 TCBOf(sp)->drv->method(TCBOf(sp),arg1)
2458 #define CallDriver_2(sp,method,arg1,arg2)            TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2)
2459 #define CallDriver_3(sp,method,arg1,arg2,arg3)       TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3)
2460 #define CallDriver_4(sp,method,arg1,arg2,arg3,arg4)  TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3,arg4)
2461
2462 extern NCURSES_EXPORT_VAR(const color_t*) _nc_cga_palette;
2463 extern NCURSES_EXPORT_VAR(const color_t*) _nc_hls_palette;
2464
2465 extern NCURSES_EXPORT(int)      _nc_get_driver(TERMINAL_CONTROL_BLOCK*, const char*, int*);
2466 extern NCURSES_EXPORT(void)     _nc_get_screensize_ex(SCREEN *, TERMINAL *, int *, int *);
2467 #endif /* USE_TERM_DRIVER */
2468
2469 /*
2470  * Entrypoints which are actually provided in the terminal driver, which would
2471  * be an sp-name otherwise.
2472  */
2473 #ifdef USE_TERM_DRIVER
2474 #define TINFO_HAS_KEY           _nc_tinfo_has_key
2475 #define TINFO_DOUPDATE          _nc_tinfo_doupdate
2476 #define TINFO_MVCUR             _nc_tinfo_mvcur
2477 extern NCURSES_EXPORT(int)      TINFO_HAS_KEY(SCREEN*, int);
2478 extern NCURSES_EXPORT(int)      TINFO_DOUPDATE(SCREEN *);
2479 extern NCURSES_EXPORT(int)      TINFO_MVCUR(SCREEN*, int, int, int, int);
2480 #else
2481 #define TINFO_HAS_KEY           NCURSES_SP_NAME(has_key)
2482 #define TINFO_DOUPDATE          NCURSES_SP_NAME(doupdate)
2483 #define TINFO_MVCUR             NCURSES_SP_NAME(_nc_mvcur)
2484 #endif
2485
2486 #if defined(EXP_WIN32_DRIVER)
2487 #include <nc_win32.h>
2488 #endif
2489
2490 /*
2491  * Entrypoints using an extra parameter with the terminal driver.
2492  */
2493 #ifdef USE_TERM_DRIVER
2494 extern NCURSES_EXPORT(void)   _nc_get_screensize(SCREEN *, TERMINAL *, int *, int *);
2495 extern NCURSES_EXPORT(int)    _nc_setupterm_ex(TERMINAL **, const char *, int , int *, int);
2496 #define TINFO_GET_SIZE(sp, tp, lp, cp) \
2497         _nc_get_screensize(sp, tp, lp, cp)
2498 #define TINFO_SET_CURTERM(sp, tp) \
2499         NCURSES_SP_NAME(set_curterm)(sp, tp)
2500 #define TINFO_SETUP_TERM(tpp, name, fd, err, reuse) \
2501         _nc_setupterm_ex(tpp, name, fd, err, reuse)
2502 #else /* !USE_TERM_DRIVER */
2503 extern NCURSES_EXPORT(void)   _nc_get_screensize(SCREEN *, int *, int *);
2504 #define TINFO_GET_SIZE(sp, tp, lp, cp) \
2505         _nc_get_screensize(sp, lp, cp)
2506 #define TINFO_SET_CURTERM(sp, tp) \
2507         set_curterm(tp)
2508 #define TINFO_SETUP_TERM(tpp, name, fd, err, reuse) \
2509         _nc_setupterm(name, fd, err, reuse)
2510 #endif /* !USE_TERM_DRIVER */
2511
2512 #ifdef EXP_WIN32_DRIVER
2513 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_TINFO_DRIVER;
2514 #else
2515 #ifdef USE_TERM_DRIVER
2516 #if defined(USE_WIN32CON_DRIVER)
2517 #include <nc_mingw.h>
2518 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_WIN_DRIVER;
2519 extern NCURSES_EXPORT(int)  _nc_mingw_isatty(int fd);
2520 extern NCURSES_EXPORT(int)  _nc_mingw_isconsole(int fd);
2521 extern NCURSES_EXPORT(int) _nc_mingw_console_read(
2522     SCREEN *sp,
2523     HANDLE  fd,
2524     int *buf);
2525 extern NCURSES_EXPORT(int) _nc_mingw_testmouse(
2526     SCREEN * sp,
2527     HANDLE fd,
2528     int delay EVENTLIST_2nd(_nc_eventlist*));
2529 #else
2530 #endif
2531 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_TINFO_DRIVER;
2532 #endif /* USE_TERM_DRIVER */
2533 #endif /* EXP_WIN32_DRIVER */
2534
2535 #if defined(USE_TERM_DRIVER) && defined(EXP_WIN32_DRIVER)
2536 #define NC_ISATTY(fd) (0 != _nc_console_isatty(fd))
2537 #elif defined(USE_TERM_DRIVER) && defined(USE_WIN32CON_DRIVER)
2538 #define NC_ISATTY(fd) _nc_mingw_isatty(fd)
2539 #else
2540 #define NC_ISATTY(fd) isatty(fd)
2541 #endif
2542
2543 #ifdef USE_TERM_DRIVER
2544 #  define IsTermInfo(sp)       ((TCBOf(sp) != 0) && ((TCBOf(sp)->drv->isTerminfo)))
2545 #  define HasTInfoTerminal(sp) ((0 != TerminalOf(sp)) && IsTermInfo(sp))
2546 #  if defined(EXP_WIN32_DRIVER)
2547 #    define IsTermInfoOnConsole(sp) (IsTermInfo(sp) && _nc_console_test(TerminalOf(sp)->Filedes))
2548 #  elif defined(USE_WIN32CON_DRIVER)
2549 #    define IsTermInfoOnConsole(sp) (IsTermInfo(sp) && _nc_mingw_isconsole(TerminalOf(sp)->Filedes))
2550 #  else
2551 #    define IsTermInfoOnConsole(sp) FALSE
2552 #  endif
2553 #else
2554 #  define IsTermInfo(sp)       TRUE
2555 #  define HasTInfoTerminal(sp) (0 != TerminalOf(sp))
2556 #  if defined(EXP_WIN32_DRIVER)
2557 #    define IsTermInfoOnConsole(sp) _nc_console_test(TerminalOf(sp)->Filedes)
2558 #  else
2559 #    define IsTermInfoOnConsole(sp) FALSE
2560 #  endif
2561 #endif
2562
2563 #define IsValidTIScreen(sp)  (HasTInfoTerminal(sp))
2564
2565 /*
2566  * Exported entrypoints beyond the published API
2567  */
2568 #if NCURSES_SP_FUNCS
2569 extern NCURSES_EXPORT(WINDOW *) _nc_curscr_of(SCREEN*);
2570 extern NCURSES_EXPORT(WINDOW *) _nc_newscr_of(SCREEN*);
2571 extern NCURSES_EXPORT(WINDOW *) _nc_stdscr_of(SCREEN*);
2572 extern NCURSES_EXPORT(int)      _nc_outc_wrapper(SCREEN*,int);
2573
2574 #if USE_REENTRANT
2575 extern NCURSES_EXPORT(int)       NCURSES_SP_NAME(_nc_TABSIZE)(SCREEN*);
2576 extern NCURSES_EXPORT(char *)    NCURSES_SP_NAME(longname)(SCREEN*);
2577 #endif
2578
2579 #if NCURSES_EXT_FUNCS
2580 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tabsize)(SCREEN*, int);
2581 #endif
2582
2583 /*
2584  * We put the safe versions of various calls here as they are not published
2585  * part of the API up to now
2586  */
2587 extern NCURSES_EXPORT(TERMINAL*) NCURSES_SP_NAME(_nc_get_cur_term) (SCREEN *sp);
2588 extern NCURSES_EXPORT(WINDOW *) NCURSES_SP_NAME(_nc_makenew) (SCREEN*, int, int, int, int, int);
2589 extern NCURSES_EXPORT(bool)     NCURSES_SP_NAME(_nc_reset_colors)(SCREEN*);
2590 extern NCURSES_EXPORT(char *)   NCURSES_SP_NAME(_nc_printf_string)(SCREEN*, const char *, va_list);
2591 extern NCURSES_EXPORT(chtype)   NCURSES_SP_NAME(_nc_acs_char)(SCREEN*,int);
2592 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_get_tty_mode)(SCREEN*,TTY*);
2593 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_mcprint)(SCREEN*,char*, int);
2594 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_msec_cost)(SCREEN*, const char *, int);
2595 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_mvcur)(SCREEN*, int, int, int, int);
2596 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_outch)(SCREEN*, int);
2597 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putchar)(SCREEN*, int);
2598 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp)(SCREEN*, const char *, const char*);
2599 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp_flush)(SCREEN*, const char *, const char *);
2600 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_ripoffline)(SCREEN*, int, int (*)(WINDOW *,int));
2601 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scrolln)(SCREEN*, int, int, int, int);
2602 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tty_mode)(SCREEN*, TTY*);
2603 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_setupscreen)(SCREEN**, int, int, FILE *, int, int);
2604 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_tgetent)(SCREEN*,char*,const char *);
2605 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_color)(SCREEN*, int, int, int, NCURSES_SP_OUTC);
2606 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_xmc_glitch)(SCREEN*, attr_t);
2607 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_flush)(SCREEN*);
2608 extern GCC_NORETURN NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_free_and_exit)(SCREEN*, int);
2609 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_freeall)(SCREEN*);
2610 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_hash_map)(SCREEN*);
2611 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_init_acs)(SCREEN*);
2612 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_make_oldhash)(SCREEN*, int i);
2613 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_init)(SCREEN*);
2614 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_resume)(SCREEN*);
2615 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_wrap)(SCREEN*);
2616 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_init)(SCREEN*);
2617 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_resume)(SCREEN*);
2618 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_wrap)(SCREEN*);
2619 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_oldhash)(SCREEN*, int n, int top, int bot);
2620 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_optimize)(SCREEN*);
2621 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_set_buffer)(SCREEN*, FILE *, int);
2622
2623 extern NCURSES_EXPORT(void)     _nc_cookie_init(SCREEN *sp);
2624
2625 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
2626 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_linedump)(SCREEN*);
2627 #endif
2628
2629 #if USE_WIDEC_SUPPORT
2630 extern NCURSES_EXPORT(wchar_t *) NCURSES_SP_NAME(_nc_wunctrl)(SCREEN*, cchar_t *);
2631 #endif
2632
2633 #endif /* NCURSES_SP_FUNCS */
2634
2635 #if NCURSES_SP_FUNCS
2636
2637 #define safe_keyname NCURSES_SP_NAME(keyname)
2638 #define safe_unctrl  NCURSES_SP_NAME(unctrl)
2639 #define safe_ungetch NCURSES_SP_NAME(ungetch)
2640
2641 #else
2642
2643 #define safe_keyname _nc_keyname
2644 #define safe_unctrl  _nc_unctrl
2645 #define safe_ungetch _nc_ungetch
2646
2647 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_keyname (SCREEN *, int);
2648 extern NCURSES_EXPORT(int) _nc_ungetch (SCREEN *, int);
2649 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_unctrl (SCREEN *, chtype);
2650
2651 #endif
2652
2653 #ifdef EXP_XTERM_1005
2654 extern NCURSES_EXPORT(int) _nc_conv_to_utf8(unsigned char *, unsigned, unsigned);
2655 extern NCURSES_EXPORT(int) _nc_conv_to_utf32(unsigned *, const char *, unsigned);
2656 #endif
2657
2658 #ifdef __cplusplus
2659 }
2660 #endif
2661
2662 /* *INDENT-ON* */
2663
2664 #endif /* CURSES_PRIV_H */