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