]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/curses.priv.h
df9fe2eaaee153e93d9379fff85ea6a8000418ae
[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.581 2017/07/15 20:17:01 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 /*
1050  * The SCREEN structure.
1051  */
1052
1053 struct screen {
1054         int             _ifd;           /* input file descriptor for screen */
1055         int             _ofd;           /* output file descriptor for screen */
1056         FILE            *_ofp;          /* output file ptr for screen       */
1057         char            *out_buffer;    /* output buffer                    */
1058         size_t          out_limit;      /* output buffer size               */
1059         size_t          out_inuse;      /* output buffer current use        */
1060         bool            _filtered;      /* filter() was called              */
1061         bool            _prescreen;     /* is in prescreen phase            */
1062         bool            _use_env;       /* LINES & COLS from environment?   */
1063         int             _checkfd;       /* filedesc for typeahead check     */
1064         TERMINAL        *_term;         /* terminal type information        */
1065         TTY             _saved_tty;     /* savetty/resetty information      */
1066         NCURSES_SIZE_T  _lines;         /* screen lines                     */
1067         NCURSES_SIZE_T  _columns;       /* screen columns                   */
1068
1069         NCURSES_SIZE_T  _lines_avail;   /* lines available for stdscr       */
1070         NCURSES_SIZE_T  _topstolen;     /* lines stolen from top            */
1071
1072         WINDOW          *_curscr;       /* current screen                   */
1073         WINDOW          *_newscr;       /* virtual screen to be updated to  */
1074         WINDOW          *_stdscr;       /* screen's full-window context     */
1075
1076 #define CurScreen(sp)  (sp)->_curscr
1077 #define NewScreen(sp)  (sp)->_newscr
1078 #define StdScreen(sp)  (sp)->_stdscr
1079
1080         TRIES           *_keytry;       /* "Try" for use with keypad mode   */
1081         TRIES           *_key_ok;       /* Disabled keys via keyok(,FALSE)  */
1082         bool            _tried;         /* keypad mode was initialized      */
1083         bool            _keypad_on;     /* keypad mode is currently on      */
1084
1085         bool            _called_wgetch; /* check for recursion in wgetch()  */
1086         int             _fifo[FIFO_SIZE];       /* input push-back buffer   */
1087         short           _fifohead,      /* head of fifo queue               */
1088                         _fifotail,      /* tail of fifo queue               */
1089                         _fifopeek,      /* where to peek for next char      */
1090                         _fifohold;      /* set if breakout marked           */
1091
1092         int             _endwin;        /* are we out of window mode?       */
1093         NCURSES_CH_T    *_current_attr; /* holds current attributes set     */
1094         int             _coloron;       /* is color enabled?                */
1095         int             _color_defs;    /* are colors modified              */
1096         int             _cursor;        /* visibility of the cursor         */
1097         int             _cursrow;       /* physical cursor row              */
1098         int             _curscol;       /* physical cursor column           */
1099         bool            _notty;         /* true if we cannot switch non-tty */
1100         int             _nl;            /* True if NL -> CR/NL is on        */
1101         int             _raw;           /* True if in raw mode              */
1102         int             _cbreak;        /* 1 if in cbreak mode              */
1103                                         /* > 1 if in halfdelay mode         */
1104         int             _echo;          /* True if echo on                  */
1105         int             _use_meta;      /* use the meta key?                */
1106         struct _SLK     *_slk;          /* ptr to soft key struct / NULL    */
1107         int             slk_format;     /* selected format for this screen  */
1108         /* cursor movement costs; units are 10ths of milliseconds */
1109 #if NCURSES_NO_PADDING
1110         bool            _no_padding;    /* flag to set if padding disabled  */
1111 #endif
1112         int             _char_padding;  /* cost of character put            */
1113         int             _cr_cost;       /* cost of (carriage_return)        */
1114         int             _cup_cost;      /* cost of (cursor_address)         */
1115         int             _home_cost;     /* cost of (cursor_home)            */
1116         int             _ll_cost;       /* cost of (cursor_to_ll)           */
1117 #if USE_HARD_TABS
1118         int             _ht_cost;       /* cost of (tab)                    */
1119         int             _cbt_cost;      /* cost of (backtab)                */
1120 #endif /* USE_HARD_TABS */
1121         int             _cub1_cost;     /* cost of (cursor_left)            */
1122         int             _cuf1_cost;     /* cost of (cursor_right)           */
1123         int             _cud1_cost;     /* cost of (cursor_down)            */
1124         int             _cuu1_cost;     /* cost of (cursor_up)              */
1125         int             _cub_cost;      /* cost of (parm_cursor_left)       */
1126         int             _cuf_cost;      /* cost of (parm_cursor_right)      */
1127         int             _cud_cost;      /* cost of (parm_cursor_down)       */
1128         int             _cuu_cost;      /* cost of (parm_cursor_up)         */
1129         int             _hpa_cost;      /* cost of (column_address)         */
1130         int             _vpa_cost;      /* cost of (row_address)            */
1131         /* used in tty_update.c, must be chars */
1132         int             _ed_cost;       /* cost of (clr_eos)                */
1133         int             _el_cost;       /* cost of (clr_eol)                */
1134         int             _el1_cost;      /* cost of (clr_bol)                */
1135         int             _dch1_cost;     /* cost of (delete_character)       */
1136         int             _ich1_cost;     /* cost of (insert_character)       */
1137         int             _dch_cost;      /* cost of (parm_dch)               */
1138         int             _ich_cost;      /* cost of (parm_ich)               */
1139         int             _ech_cost;      /* cost of (erase_chars)            */
1140         int             _rep_cost;      /* cost of (repeat_char)            */
1141         int             _hpa_ch_cost;   /* cost of (column_address)         */
1142         int             _cup_ch_cost;   /* cost of (cursor_address)         */
1143         int             _cuf_ch_cost;   /* cost of (parm_cursor_right)      */
1144         int             _inline_cost;   /* cost of inline-move              */
1145         int             _smir_cost;     /* cost of (enter_insert_mode)      */
1146         int             _rmir_cost;     /* cost of (exit_insert_mode)       */
1147         int             _ip_cost;       /* cost of (insert_padding)         */
1148         /* used in lib_mvcur.c */
1149         char *          _address_cursor;
1150         /* used in tty_update.c */
1151         int             _scrolling;     /* 1 if terminal's smart enough to  */
1152
1153         /* used in lib_color.c */
1154         color_t         *_color_table;  /* screen's color palette            */
1155         int             _color_count;   /* count of colors in palette        */
1156         colorpair_t     *_color_pairs;  /* screen's color pair list          */
1157         int             _pair_count;    /* same as COLOR_PAIRS               */
1158         int             _pair_limit;    /* actual limit of color-pairs       */
1159 #if NCURSES_EXT_FUNCS
1160         bool            _assumed_color; /* use assumed colors                */
1161         bool            _default_color; /* use default colors                */
1162         bool            _has_sgr_39_49; /* has ECMA default color support    */
1163         int             _default_fg;    /* assumed default foreground        */
1164         int             _default_bg;    /* assumed default background        */
1165         int             _default_pairs; /* count pairs using default color   */
1166 #endif
1167         chtype          _ok_attributes; /* valid attributes for terminal     */
1168         chtype          _xmc_suppress;  /* attributes to suppress if xmc     */
1169         chtype          _xmc_triggers;  /* attributes to process if xmc      */
1170         chtype *        _acs_map;       /* the real alternate-charset map    */
1171         bool *          _screen_acs_map;
1172
1173
1174         /* used in lib_vidattr.c */
1175         bool            _use_rmso;      /* true if we may use 'rmso'         */
1176         bool            _use_rmul;      /* true if we may use 'rmul'         */
1177 #if USE_ITALIC
1178         bool            _use_ritm;      /* true if we may use 'ritm'         */
1179 #endif
1180
1181 #if USE_KLIBC_KBD
1182         bool            _extended_key;  /* true if an extended key           */
1183 #endif
1184
1185         /*
1186          * These data correspond to the state of the idcok() and idlok()
1187          * functions.  A caveat is in order here:  the XSI and SVr4
1188          * documentation specify that these functions apply to the window which
1189          * is given as an argument.  However, ncurses implements this logic
1190          * only for the newscr/curscr update process, _not_ per-window.
1191          */
1192         bool            _nc_sp_idlok;
1193         bool            _nc_sp_idcok;
1194
1195         /*
1196          * These are the data that support the mouse interface.
1197          */
1198         bool            _mouse_initialized;
1199         MouseType       _mouse_type;
1200         int             _maxclick;
1201         bool            (*_mouse_event) (SCREEN *);
1202         bool            (*_mouse_inline)(SCREEN *);
1203         bool            (*_mouse_parse) (SCREEN *, int);
1204         void            (*_mouse_resume)(SCREEN *);
1205         void            (*_mouse_wrap)  (SCREEN *);
1206         int             _mouse_fd;      /* file-descriptor, if any */
1207         bool            _mouse_active;  /* true if initialized */
1208         mmask_t         _mouse_mask;    /* set via mousemask() */
1209         mmask_t         _mouse_mask2;   /* OR's in press/release bits */
1210         mmask_t         _mouse_bstate;
1211         MouseFormat     _mouse_format;  /* type of xterm mouse protocol */
1212         NCURSES_CONST char *_mouse_xtermcap; /* string to enable/disable mouse */
1213         MEVENT          _mouse_events[EV_MAX];  /* hold the last mouse event seen */
1214         MEVENT          *_mouse_eventp; /* next free slot in event queue */
1215
1216 #if USE_GPM_SUPPORT
1217         bool            _mouse_gpm_loaded;
1218         bool            _mouse_gpm_found;
1219 #ifdef HAVE_LIBDL
1220         void            *_dlopen_gpm;
1221         TYPE_gpm_fd     _mouse_gpm_fd;
1222         TYPE_Gpm_Open   _mouse_Gpm_Open;
1223         TYPE_Gpm_Close  _mouse_Gpm_Close;
1224         TYPE_Gpm_GetEvent _mouse_Gpm_GetEvent;
1225 #endif
1226         Gpm_Connect     _mouse_gpm_connect;
1227 #endif /* USE_GPM_SUPPORT */
1228
1229 #if USE_EMX_MOUSE
1230         int             _emxmouse_wfd;
1231         int             _emxmouse_thread;
1232         int             _emxmouse_activated;
1233         char            _emxmouse_buttons[4];
1234 #endif
1235
1236 #if USE_SYSMOUSE
1237         MEVENT          _sysmouse_fifo[FIFO_SIZE];
1238         int             _sysmouse_head;
1239         int             _sysmouse_tail;
1240         int             _sysmouse_char_width;   /* character width */
1241         int             _sysmouse_char_height;  /* character height */
1242         int             _sysmouse_old_buttons;
1243         int             _sysmouse_new_buttons;
1244 #endif
1245
1246 #ifdef USE_TERM_DRIVER
1247         MEVENT          _drv_mouse_fifo[FIFO_SIZE];
1248         int             _drv_mouse_head;
1249         int             _drv_mouse_tail;
1250         int             _drv_mouse_old_buttons;
1251         int             _drv_mouse_new_buttons;
1252 #endif
1253         /*
1254          * This supports automatic resizing
1255          */
1256 #if USE_SIZECHANGE
1257         int             (*_resize)(NCURSES_SP_DCLx int y, int x);
1258         int             (*_ungetch)(SCREEN *, int);
1259 #endif
1260
1261         /*
1262          * These are data that support the proper handling of the panel stack on an
1263          * per screen basis.
1264          */
1265         struct panelhook _panelHook;
1266
1267         bool            _sig_winch;
1268         SCREEN          *_next_screen;
1269
1270         /* hashes for old and new lines */
1271         unsigned long   *oldhash, *newhash;
1272         HASHMAP         *hashtab;
1273         int             hashtab_len;
1274         int             *_oldnum_list;
1275         int             _oldnum_size;
1276
1277         NCURSES_SP_OUTC _outch;         /* output handler if not putc */
1278
1279         int             _legacy_coding; /* see use_legacy_coding() */
1280
1281 #if USE_REENTRANT
1282         char            _ttytype[NAMESIZE];
1283         int             _ESCDELAY;
1284         int             _TABSIZE;
1285         int             _LINES;
1286         int             _COLS;
1287 #ifdef TRACE
1288         long            _outchars;
1289         const char      *_tputs_trace;
1290 #endif
1291 #endif
1292
1293 #ifdef TRACE
1294         char            tracechr_buf[40];
1295         char            tracemse_buf[TRACEMSE_MAX];
1296 #endif
1297 #ifdef USE_SP_WINDOWLIST
1298         WINDOWLIST*     _windowlist;
1299 #define WindowList(sp)  (sp)->_windowlist
1300 #endif
1301         NCURSES_OUTC    jump;
1302
1303         ripoff_t        rippedoff[N_RIPS];
1304         ripoff_t        *rsp;
1305
1306 #if NCURSES_SP_FUNCS
1307         bool            use_tioctl;
1308 #endif
1309
1310         /*
1311          * ncurses/ncursesw are the same up to this point.
1312          */
1313 #if USE_WIDEC_SUPPORT
1314         /* recent versions of 'screen' have partially-working support for
1315          * UTF-8, but do not permit ACS at the same time (see tty_update.c).
1316          */
1317         bool            _screen_acs_fix;
1318         bool            _screen_unicode;
1319 #endif
1320 #if NCURSES_EXT_FUNCS && USE_NEW_PAIR
1321         void            *_ordered_pairs; /* index used by alloc_pair()       */
1322         int             _pairs_used;    /* actual number of color-pairs used */
1323         int             _recent_pair;   /* number for most recent free-pair  */
1324 #endif
1325 };
1326
1327 extern NCURSES_EXPORT_VAR(SCREEN *) _nc_screen_chain;
1328 extern NCURSES_EXPORT_VAR(SIG_ATOMIC_T) _nc_have_sigwinch;
1329
1330         WINDOWLIST {
1331         WINDOWLIST *next;
1332         SCREEN *screen;         /* screen containing the window */
1333         WINDOW  win;            /* WINDOW_EXT() needs to account for offset */
1334 #if NCURSES_WIDECHAR
1335         char addch_work[(MB_LEN_MAX * 9) + 1];
1336         unsigned addch_used;    /* number of bytes in addch_work[] */
1337         int addch_x;            /* x-position for addch_work[] */
1338         int addch_y;            /* y-position for addch_work[] */
1339 #endif
1340 };
1341
1342 #define WINDOW_EXT(w,m) (((WINDOWLIST *)((void *)((char *)(w) - offsetof(WINDOWLIST, win))))->m)
1343
1344 #ifdef USE_SP_WINDOWLIST
1345 #define SP_INIT_WINDOWLIST(sp)  WindowList(sp) = 0
1346 #else
1347 #define SP_INIT_WINDOWLIST(sp)  /* nothing */
1348 #endif
1349
1350 #define SP_PRE_INIT(sp)                         \
1351     sp->_cursrow = -1;                          \
1352     sp->_curscol = -1;                          \
1353     sp->_nl = TRUE;                             \
1354     sp->_raw = FALSE;                           \
1355     sp->_cbreak = 0;                            \
1356     sp->_echo = TRUE;                           \
1357     sp->_fifohead = -1;                         \
1358     sp->_endwin = TRUE;                         \
1359     sp->_cursor = -1;                           \
1360     SP_INIT_WINDOWLIST(sp);                     \
1361     sp->_outch = NCURSES_OUTC_FUNC;             \
1362     sp->jump = 0                                \
1363
1364 /* usually in <limits.h> */
1365 #ifndef UCHAR_MAX
1366 #define UCHAR_MAX 255
1367 #endif
1368
1369 /* The terminfo source is assumed to be 7-bit ASCII */
1370 #define is7bits(c)      ((unsigned)(c) < 128)
1371
1372 /* Checks for isprint() should be done on 8-bit characters (non-wide) */
1373 #define is8bits(c)      ((unsigned)(c) <= UCHAR_MAX)
1374
1375 #ifndef min
1376 #define min(a,b)        ((a) > (b)  ?  (b)  :  (a))
1377 #endif
1378
1379 #ifndef max
1380 #define max(a,b)        ((a) < (b)  ?  (b)  :  (a))
1381 #endif
1382
1383 /* usually in <unistd.h> */
1384 #ifndef STDIN_FILENO
1385 #define STDIN_FILENO 0
1386 #endif
1387
1388 #ifndef STDOUT_FILENO
1389 #define STDOUT_FILENO 1
1390 #endif
1391
1392 #ifndef STDERR_FILENO
1393 #define STDERR_FILENO 2
1394 #endif
1395
1396 #ifndef EXIT_SUCCESS
1397 #define EXIT_SUCCESS 0
1398 #endif
1399
1400 #ifndef EXIT_FAILURE
1401 #define EXIT_FAILURE 1
1402 #endif
1403
1404 #ifndef R_OK
1405 #define R_OK    4               /* Test for read permission.  */
1406 #endif
1407 #ifndef W_OK
1408 #define W_OK    2               /* Test for write permission.  */
1409 #endif
1410 #ifndef X_OK
1411 #define X_OK    1               /* Test for execute permission.  */
1412 #endif
1413 #ifndef F_OK
1414 #define F_OK    0               /* Test for existence.  */
1415 #endif
1416
1417 #if HAVE_FCNTL_H
1418 #include <fcntl.h>              /* may define O_BINARY  */
1419 #endif
1420
1421 #ifndef O_BINARY
1422 #define O_BINARY 0
1423 #endif
1424
1425 #ifdef TRACE
1426 #if USE_REENTRANT
1427 #define COUNT_OUTCHARS(n) _nc_count_outchars(n);
1428 #else
1429 #define COUNT_OUTCHARS(n) _nc_outchars += (n);
1430 #endif
1431 #else
1432 #define COUNT_OUTCHARS(n) /* nothing */
1433 #endif
1434
1435 #define RESET_OUTCHARS() COUNT_OUTCHARS(-_nc_outchars)
1436
1437 #define UChar(c)        ((unsigned char)(c))
1438 #define UShort(c)       ((unsigned short)(c))
1439 #define ChCharOf(c)     ((chtype)(c) & (chtype)A_CHARTEXT)
1440 #define ChAttrOf(c)     ((chtype)(c) & (chtype)A_ATTRIBUTES)
1441
1442 #ifndef MB_LEN_MAX
1443 #define MB_LEN_MAX 8 /* should be >= MB_CUR_MAX, but that may be a function */
1444 #endif
1445
1446 #if USE_WIDEC_SUPPORT /* { */
1447 #define isEILSEQ(status) (((size_t)status == (size_t)-1) && (errno == EILSEQ))
1448
1449 #define init_mb(state)  memset(&state, 0, sizeof(state))
1450
1451 #if NCURSES_EXT_COLORS
1452 #define NulColor        , 0
1453 #else
1454 #define NulColor        /* nothing */
1455 #endif
1456
1457 #define NulChar         0,0,0,0 /* FIXME: see CCHARW_MAX */
1458 #define CharOf(c)       ((c).chars[0])
1459 #define AttrOf(c)       ((c).attr)
1460
1461 #define AddAttr(c,a)    AttrOf(c) |=  ((a) & A_ATTRIBUTES)
1462 #define RemAttr(c,a)    AttrOf(c) &= ~((a) & A_ATTRIBUTES)
1463 #define SetAttr(c,a)    AttrOf(c) =   ((a) & A_ATTRIBUTES) | WidecExt(c)
1464
1465 #define NewChar2(c,a)   { a, { c, NulChar } NulColor }
1466 #define NewChar(ch)     NewChar2(ChCharOf(ch), ChAttrOf(ch))
1467
1468 #if CCHARW_MAX == 5
1469 #define CharEq(a,b)     (((a).attr == (b).attr) \
1470                        && (a).chars[0] == (b).chars[0] \
1471                        && (a).chars[1] == (b).chars[1] \
1472                        && (a).chars[2] == (b).chars[2] \
1473                        && (a).chars[3] == (b).chars[3] \
1474                        && (a).chars[4] == (b).chars[4] \
1475                         if_EXT_COLORS(&& (a).ext_color == (b).ext_color))
1476 #else
1477 #define CharEq(a,b)     (!memcmp(&(a), &(b), sizeof(a)))
1478 #endif
1479
1480 #define SetChar(ch,c,a) do {                                                        \
1481                             NCURSES_CH_T *_cp = &ch;                                \
1482                             memset(_cp, 0, sizeof(ch));                             \
1483                             _cp->chars[0] = (wchar_t) (c);                          \
1484                             _cp->attr = (a);                                        \
1485                             if_EXT_COLORS(SetPair(ch, PairNumber(a)));              \
1486                         } while (0)
1487 #define CHREF(wch)      (&wch)
1488 #define CHDEREF(wch)    (*wch)
1489 #define ARG_CH_T        NCURSES_CH_T *
1490 #define CARG_CH_T       const NCURSES_CH_T *
1491 #define PUTC_DATA       char PUTC_buf[MB_LEN_MAX]; int PUTC_i, PUTC_n; \
1492                         mbstate_t PUT_st; wchar_t PUTC_ch
1493 #define PUTC_INIT       init_mb (PUT_st)
1494 #define PUTC(ch)        do { if(!isWidecExt(ch)) {                                  \
1495                         if (Charable(ch)) {                                         \
1496                             NCURSES_OUTC_FUNC (NCURSES_SP_ARGx CharOf(ch)); \
1497                             COUNT_OUTCHARS(1);                                      \
1498                         } else {                                                    \
1499                             for (PUTC_i = 0; PUTC_i < CCHARW_MAX; ++PUTC_i) {       \
1500                                 PUTC_ch = (ch).chars[PUTC_i];                       \
1501                                 if (PUTC_ch == L'\0')                               \
1502                                     break;                                          \
1503                                 PUTC_INIT;                                                  \
1504                                 PUTC_n = (int) wcrtomb(PUTC_buf,                    \
1505                                                        (ch).chars[PUTC_i], &PUT_st); \
1506                                 if (PUTC_n <= 0) {                                  \
1507                                     if (PUTC_ch && is8bits(PUTC_ch) && PUTC_i == 0) \
1508                                         NCURSES_OUTC_FUNC (NCURSES_SP_ARGx CharOf(ch)); \
1509                                     break;                                          \
1510                                 } else {                                            \
1511                                     int PUTC_j;                                     \
1512                                     for (PUTC_j = 0; PUTC_j < PUTC_n; ++PUTC_j) {   \
1513                                         NCURSES_OUTC_FUNC (NCURSES_SP_ARGx PUTC_buf[PUTC_j]); \
1514                                     }                                               \
1515                                 }                                                   \
1516                             }                                                       \
1517                             COUNT_OUTCHARS(PUTC_i);                                 \
1518                         } } } while (0)
1519
1520 #define BLANK           NewChar2(' ', WA_NORMAL)
1521 #define ZEROS           NewChar2('\0', WA_NORMAL)
1522 #define ISBLANK(ch)     ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0')
1523
1524         /*
1525          * Wide characters cannot be represented in the A_CHARTEXT mask of
1526          * attr_t's but an application might have set a narrow character there.
1527          * But even in that case, it would only be a printable character, or
1528          * zero.  Otherwise we can use those bits to tell if a cell is the
1529          * first or extension part of a wide character.
1530          */
1531 #define WidecExt(ch)    (int) (AttrOf(ch) & A_CHARTEXT)
1532 #define isWidecBase(ch) (WidecExt(ch) == 1)
1533 #define isWidecExt(ch)  (WidecExt(ch) > 1 && WidecExt(ch) < 32)
1534 #define SetWidecExt(dst, ext)   AttrOf(dst) &= ~A_CHARTEXT,             \
1535                                 AttrOf(dst) |= (attr_t) (ext + 1)
1536
1537 #define if_WIDEC(code)  code
1538 #define Charable(ch)    (((SP_PARM->_legacy_coding)                     \
1539                          || (AttrOf(ch) & A_ALTCHARSET)                 \
1540                          || (!isWidecExt(ch))) &&                       \
1541                              (ch).chars[1] == L'\0' &&                  \
1542                              _nc_is_charable(CharOf(ch)))
1543
1544 #define L(ch)           L ## ch
1545 #else /* }{ */
1546 #define CharOf(c)       ChCharOf(c)
1547 #define AttrOf(c)       ChAttrOf(c)
1548 #define AddAttr(c,a)    c |= (a)
1549 #define RemAttr(c,a)    c &= ~((a) & A_ATTRIBUTES)
1550 #define SetAttr(c,a)    c = ((c) & ~A_ATTRIBUTES) | (a)
1551 #define NewChar(ch)     (ch)
1552 #define NewChar2(c,a)   ((c) | (a))
1553 #define CharEq(a,b)     ((a) == (b))
1554 #define SetChar(ch,c,a) ch = (c) | (a)
1555 #define CHREF(wch)      wch
1556 #define CHDEREF(wch)    wch
1557 #define ARG_CH_T        NCURSES_CH_T
1558 #define CARG_CH_T       NCURSES_CH_T
1559 #define PUTC_DATA       /* nothing */
1560 #define PUTC(ch)        NCURSES_OUTC_FUNC (NCURSES_SP_ARGx (int) ch)
1561
1562 #define BLANK           (' '|A_NORMAL)
1563 #define ZEROS           ('\0'|A_NORMAL)
1564 #define ISBLANK(ch)     (CharOf(ch) == ' ')
1565
1566 #define isWidecExt(ch)  (0)
1567 #define if_WIDEC(code) /* nothing */
1568
1569 #define L(ch)           ch
1570 #endif /* } */
1571
1572 #define AttrOfD(ch)     AttrOf(CHDEREF(ch))
1573 #define CharOfD(ch)     CharOf(CHDEREF(ch))
1574 #define SetChar2(wch,ch)    SetChar(wch,ChCharOf(ch),ChAttrOf(ch))
1575
1576 #define BLANK_ATTR      A_NORMAL
1577 #define BLANK_TEXT      L(' ')
1578
1579 #define CHANGED     -1
1580
1581 #define LEGALYX(w, y, x) \
1582               ((w) != 0 && \
1583                 ((x) >= 0 && (x) <= (w)->_maxx && \
1584                  (y) >= 0 && (y) <= (w)->_maxy))
1585
1586 #define CHANGED_CELL(line,col) \
1587         if (line->firstchar == _NOCHANGE) \
1588                 line->firstchar = line->lastchar = (NCURSES_SIZE_T) (col); \
1589         else if ((col) < line->firstchar) \
1590                 line->firstchar = (NCURSES_SIZE_T) (col); \
1591         else if ((col) > line->lastchar) \
1592                 line->lastchar = (NCURSES_SIZE_T) (col)
1593
1594 #define CHANGED_RANGE(line,start,end) \
1595         if (line->firstchar == _NOCHANGE \
1596          || line->firstchar > (start)) \
1597                 line->firstchar = (NCURSES_SIZE_T) (start); \
1598         if (line->lastchar == _NOCHANGE \
1599          || line->lastchar < (end)) \
1600                 line->lastchar = (NCURSES_SIZE_T) (end)
1601
1602 #define CHANGED_TO_EOL(line,start,end) \
1603         if (line->firstchar == _NOCHANGE \
1604          || line->firstchar > (start)) \
1605                 line->firstchar = (NCURSES_SIZE_T) (start); \
1606         line->lastchar = (NCURSES_SIZE_T) (end)
1607
1608 #define SIZEOF(v) (sizeof(v)/sizeof(v[0]))
1609
1610 #define FreeIfNeeded(p)  if ((p) != 0) free(p)
1611
1612 /* FreeAndNull() is not a comma-separated expression because some compilers
1613  * do not accept a mixture of void with values.
1614  */
1615 #define FreeAndNull(p)   free(p); p = 0
1616
1617 #include <nc_alloc.h>
1618
1619 /*
1620  * Use these for tic/infocmp malloc failures.  Generally the ncurses library
1621  * tries to limp along after a failure.
1622  */
1623 #define TYPE_MALLOC(type, size, name) \
1624         name = typeMalloc(type, size); \
1625         if (name == 0) \
1626             _nc_err_abort(MSG_NO_MEMORY)
1627
1628 #define TYPE_REALLOC(type, size, name) \
1629         name = typeRealloc(type, size, name); \
1630         if (name == 0) \
1631             _nc_err_abort(MSG_NO_MEMORY)
1632
1633 /*
1634  * TTY bit definition for converting tabs to spaces.
1635  */
1636 #ifdef TAB3
1637 # define OFLAGS_TABS TAB3       /* POSIX specifies TAB3 */
1638 #else
1639 # ifdef XTABS
1640 #  define OFLAGS_TABS XTABS     /* XTABS is usually the "same" */
1641 # else
1642 #  ifdef OXTABS
1643 #   define OFLAGS_TABS OXTABS   /* the traditional BSD equivalent */
1644 #  else
1645 #   define OFLAGS_TABS 0
1646 #  endif
1647 # endif
1648 #endif
1649
1650 /*
1651  * Standardize/simplify common loops
1652  */
1653 #define each_screen(p) p = _nc_screen_chain; p != 0; p = (p)->_next_screen
1654 #define each_window(sp,p) p = WindowList(sp); p != 0; p = (p)->next
1655 #define each_ripoff(p) p = safe_ripoff_stack; (p - safe_ripoff_stack) < N_RIPS; ++p
1656
1657 /*
1658  * Prefixes for call/return points of library function traces.  We use these to
1659  * instrument the public functions so that the traces can be easily transformed
1660  * into regression scripts.
1661  */
1662 #define T_CALLED(fmt) "called {" fmt
1663 #define T_CREATE(fmt) "create :" fmt
1664 #define T_RETURN(fmt) "return }" fmt
1665
1666 #ifdef TRACE
1667
1668 #if USE_REENTRANT
1669 #define TPUTS_TRACE(s)  _nc_set_tputs_trace(s);
1670 #else
1671 #define TPUTS_TRACE(s)  _nc_tputs_trace = s;
1672 #endif
1673
1674 #define START_TRACE() \
1675         if ((_nc_tracing & TRACE_MAXIMUM) == 0) { \
1676             int t = _nc_getenv_num("NCURSES_TRACE"); \
1677             if (t >= 0) \
1678                 trace((unsigned) t); \
1679         }
1680
1681 /*
1682  * Many of the _tracef() calls use static buffers; lock the trace state before
1683  * trying to fill them.
1684  */
1685 #if USE_REENTRANT
1686 #define USE_TRACEF(mask) _nc_use_tracef(mask)
1687 extern NCURSES_EXPORT(int)      _nc_use_tracef (unsigned);
1688 extern NCURSES_EXPORT(void)     _nc_locked_tracef (const char *, ...) GCC_PRINTFLIKE(1,2);
1689 #else
1690 #define USE_TRACEF(mask) (_nc_tracing & (mask))
1691 #define _nc_locked_tracef _tracef
1692 #endif
1693
1694 #define TR(n, a)        if (USE_TRACEF(n)) _nc_locked_tracef a
1695 #define T(a)            TR(TRACE_CALLS, a)
1696 #define TRACE_RETURN(value,type)     return _nc_retrace_##type((type)(value))
1697 #define TRACE_RETURN1(value,dst)     return _nc_retrace_##dst(value)
1698 #define TRACE_RETURN2(value,dst,src) return _nc_retrace_##dst##_##src(value)
1699 #define TRACE_RETURN_SP(value,type)  return _nc_retrace_##type(SP_PARM, value)
1700
1701 typedef void VoidFunc(void);
1702
1703 #define TR_FUNC(value)          ((const char*) (value))
1704 #define NonNull(s)              ((s) != 0 ? s : "<null>")
1705
1706 #define returnAttr(code)        TRACE_RETURN(code,attr_t)
1707 #define returnBits(code)        TRACE_RETURN(code,unsigned)
1708 #define returnBool(code)        TRACE_RETURN(code,bool)
1709 #define returnCPtr(code)        TRACE_RETURN1(code,cptr)
1710 #define returnCVoidPtr(code)    TRACE_RETURN1(code,cvoid_ptr)
1711 #define returnChar(code)        TRACE_RETURN(code,char)
1712 #define returnChtype(code)      TRACE_RETURN(code,chtype)
1713 #define returnCode(code)        TRACE_RETURN(code,int)
1714 #define returnIntAttr(code)     TRACE_RETURN2(code,int,attr_t)
1715 #define returnMMask(code)       TRACE_RETURN_SP(code,mmask_t)
1716 #define returnPtr(code)         TRACE_RETURN1(code,ptr)
1717 #define returnSP(code)          TRACE_RETURN1(code,sp)
1718 #define returnVoid              T((T_RETURN(""))); return
1719 #define returnVoidPtr(code)     TRACE_RETURN1(code,void_ptr)
1720 #define returnWin(code)         TRACE_RETURN1(code,win)
1721
1722 #define returnDB(code)          do { TR(TRACE_DATABASE,(T_RETURN("code %d"), (code))); return (code); } while (0)
1723
1724 extern NCURSES_EXPORT(NCURSES_BOOL)     _nc_retrace_bool (int);
1725 extern NCURSES_EXPORT(NCURSES_CONST void *) _nc_retrace_cvoid_ptr (NCURSES_CONST void *);
1726 extern NCURSES_EXPORT(SCREEN *)         _nc_retrace_sp (SCREEN *);
1727 extern NCURSES_EXPORT(WINDOW *)         _nc_retrace_win (WINDOW *);
1728 extern NCURSES_EXPORT(attr_t)           _nc_retrace_attr_t (attr_t);
1729 extern NCURSES_EXPORT(char *)           _nc_retrace_ptr (char *);
1730 extern NCURSES_EXPORT(char *)           _nc_trace_ttymode(TTY *tty);
1731 extern NCURSES_EXPORT(char *)           _nc_varargs (const char *, va_list);
1732 extern NCURSES_EXPORT(chtype)           _nc_retrace_chtype (chtype);
1733 extern NCURSES_EXPORT(const char *)     _nc_altcharset_name(attr_t, chtype);
1734 extern NCURSES_EXPORT(const char *)     _nc_retrace_cptr (const char *);
1735 extern NCURSES_EXPORT(char)             _nc_retrace_char (int);
1736 extern NCURSES_EXPORT(int)              _nc_retrace_int (int);
1737 extern NCURSES_EXPORT(int)              _nc_retrace_int_attr_t (attr_t);
1738 extern NCURSES_EXPORT(mmask_t)          _nc_retrace_mmask_t (SCREEN *, mmask_t);
1739 extern NCURSES_EXPORT(unsigned)         _nc_retrace_unsigned (unsigned);
1740 extern NCURSES_EXPORT(void *)           _nc_retrace_void_ptr (void *);
1741 extern NCURSES_EXPORT(void)             _nc_fifo_dump (SCREEN *);
1742
1743 #if USE_REENTRANT
1744 NCURSES_WRAPPED_VAR(long, _nc_outchars);
1745 NCURSES_WRAPPED_VAR(const char *, _nc_tputs_trace);
1746 #define _nc_outchars       NCURSES_PUBLIC_VAR(_nc_outchars())
1747 #define _nc_tputs_trace    NCURSES_PUBLIC_VAR(_nc_tputs_trace())
1748 extern NCURSES_EXPORT(void)             _nc_set_tputs_trace (const char *);
1749 extern NCURSES_EXPORT(void)             _nc_count_outchars (long);
1750 #else
1751 extern NCURSES_EXPORT_VAR(const char *) _nc_tputs_trace;
1752 extern NCURSES_EXPORT_VAR(long)         _nc_outchars;
1753 #endif
1754
1755 extern NCURSES_EXPORT_VAR(unsigned)     _nc_tracing;
1756
1757 extern NCURSES_EXPORT(char *) _nc_tracebits (void);
1758 extern NCURSES_EXPORT(char *) _tracemouse (const MEVENT *);
1759 extern NCURSES_EXPORT(void) _tracedump (const char *, WINDOW *);
1760
1761 #if USE_WIDEC_SUPPORT
1762 extern NCURSES_EXPORT(const char *) _nc_viswbuf2 (int, const wchar_t *);
1763 extern NCURSES_EXPORT(const char *) _nc_viswbufn (const wchar_t *, int);
1764 #endif
1765
1766 extern NCURSES_EXPORT(const char *) _nc_viscbuf2 (int, const NCURSES_CH_T *, int);
1767 extern NCURSES_EXPORT(const char *) _nc_viscbuf (const NCURSES_CH_T *, int);
1768
1769 #else /* !TRACE */
1770
1771 #define START_TRACE() /* nothing */
1772
1773 #define T(a)
1774 #define TR(n, a)
1775 #define TPUTS_TRACE(s)
1776
1777 #define returnAttr(code)        return code
1778 #define returnBits(code)        return code
1779 #define returnBool(code)        return code
1780 #define returnCPtr(code)        return code
1781 #define returnCVoidPtr(code)    return code
1782 #define returnChar(code)        return ((char) code)
1783 #define returnChtype(code)      return code
1784 #define returnCode(code)        return code
1785 #define returnIntAttr(code)     return code
1786 #define returnMMask(code)       return code
1787 #define returnPtr(code)         return code
1788 #define returnSP(code)          return code
1789 #define returnVoid              return
1790 #define returnVoidPtr(code)     return code
1791 #define returnWin(code)         return code
1792
1793 #define returnDB(code)          return code
1794
1795 #endif /* TRACE/!TRACE */
1796
1797 /*
1798  * Workaround for defective implementation of gcc attribute warn_unused_result
1799  */
1800 #if defined(__GNUC__) && defined(_FORTIFY_SOURCE)
1801 #define IGNORE_RC(func) errno = (int) func
1802 #else
1803 #define IGNORE_RC(func) (void) func
1804 #endif /* gcc workarounds */
1805
1806 /*
1807  * Return-codes for tgetent() and friends.
1808  */
1809 #define TGETENT_YES  1          /* entry is found */
1810 #define TGETENT_NO   0          /* entry is not found */
1811 #define TGETENT_ERR -1          /* an error occurred */
1812
1813 extern NCURSES_EXPORT(const char *) _nc_visbuf2 (int, const char *);
1814 extern NCURSES_EXPORT(const char *) _nc_visbufn (const char *, int);
1815
1816 #define EMPTY_MODULE(name) \
1817 extern  NCURSES_EXPORT(void) name (void); \
1818         NCURSES_EXPORT(void) name (void) { }
1819
1820 #define ALL_BUT_COLOR ((chtype)~(A_COLOR))
1821 #define NONBLANK_ATTR (A_BOLD | A_DIM | A_BLINK | A_ITALIC)
1822 #define TPARM_ATTR    (A_STANDOUT | A_UNDERLINE | A_REVERSE | A_BLINK | A_DIM | A_BOLD | A_ALTCHARSET | A_INVIS | A_PROTECT)
1823 #define XMC_CONFLICT  (A_STANDOUT | A_UNDERLINE | A_REVERSE | A_BLINK | A_DIM | A_BOLD | A_INVIS | A_PROTECT | A_ITALIC)
1824 #define XMC_CHANGES(c) ((c) & SP_PARM->_xmc_suppress)
1825
1826 #define toggle_attr_on(S,at) {\
1827    if (PairNumber(at) > 0) {\
1828       (S) = ((S) & ALL_BUT_COLOR) | (attr_t) (at);\
1829    } else {\
1830       (S) |= (attr_t) (at);\
1831    }\
1832    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1833
1834
1835 #define toggle_attr_off(S,at) {\
1836    if (PairNumber(at) > 0) {\
1837       (S) &= ~(at|A_COLOR);\
1838    } else {\
1839       (S) &= ~(at);\
1840    }\
1841    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1842
1843 #define DelCharCost(sp,count) \
1844                 ((parm_dch != 0) \
1845                 ? sp->_dch_cost \
1846                 : ((delete_character != 0) \
1847                         ? (sp->_dch1_cost * count) \
1848                         : INFINITY))
1849
1850 #define InsCharCost(sp,count) \
1851                 ((parm_ich != 0) \
1852                 ? sp->_ich_cost \
1853                 : ((enter_insert_mode && exit_insert_mode) \
1854                   ? sp->_smir_cost + sp->_rmir_cost + (sp->_ip_cost * count) \
1855                   : ((insert_character != 0) \
1856                     ? ((sp->_ich1_cost + sp->_ip_cost) * count) \
1857                     : INFINITY)))
1858
1859 #if USE_XMC_SUPPORT
1860 #define UpdateAttrs(sp,c) if (!SameAttrOf(SCREEN_ATTRS(sp), c)) { \
1861                                 attr_t chg = AttrOf(SCREEN_ATTRS(sp)); \
1862                                 VIDATTR(sp, AttrOf(c), GetPair(c)); \
1863                                 if (magic_cookie_glitch > 0 \
1864                                  && XMC_CHANGES((chg ^ AttrOf(SCREEN_ATTRS(sp))))) { \
1865                                         T(("%s @%d before glitch %d,%d", \
1866                                                 __FILE__, __LINE__, \
1867                                                 sp->_cursrow, \
1868                                                 sp->_curscol)); \
1869                                         NCURSES_SP_NAME(_nc_do_xmc_glitch)(NCURSES_SP_ARGx chg); \
1870                                 } \
1871                         }
1872 #else
1873 #define UpdateAttrs(sp,c) if (!SameAttrOf(SCREEN_ATTRS(sp), c)) { \
1874                                     VIDATTR(sp, AttrOf(c), GetPair(c)); \
1875                         }
1876 #endif
1877
1878 /*
1879  * Macros to make additional parameter to implement wgetch_events()
1880  */
1881 #ifdef NCURSES_WGETCH_EVENTS
1882 #define EVENTLIST_0th(param) param
1883 #define EVENTLIST_1st(param) param
1884 #define EVENTLIST_2nd(param) , param
1885 #define TWAIT_MASK (TW_ANY | TW_EVENT)
1886 #else
1887 #define EVENTLIST_0th(param) void
1888 #define EVENTLIST_1st(param) /* nothing */
1889 #define EVENTLIST_2nd(param) /* nothing */
1890 #define TWAIT_MASK TW_ANY
1891 #endif
1892
1893 #if NCURSES_EXPANDED && NCURSES_EXT_FUNCS
1894
1895 #undef  toggle_attr_on
1896 #define toggle_attr_on(S,at) _nc_toggle_attr_on(&(S), at)
1897 extern NCURSES_EXPORT(void) _nc_toggle_attr_on (attr_t *, attr_t);
1898
1899 #undef  toggle_attr_off
1900 #define toggle_attr_off(S,at) _nc_toggle_attr_off(&(S), at)
1901 extern NCURSES_EXPORT(void) _nc_toggle_attr_off (attr_t *, attr_t);
1902
1903 #undef  DelCharCost
1904 #define DelCharCost(sp, count) NCURSES_SP_NAME(_nc_DelCharCost)(NCURSES_SP_ARGx count)
1905
1906 #undef  InsCharCost
1907 #define InsCharCost(sp, count) NCURSES_SP_NAME(_nc_InsCharCost)(NCURSES_SP_ARGx count)
1908
1909 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(_nc_DelCharCost) (NCURSES_SP_DCLx int _c);
1910 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(_nc_InsCharCost) (NCURSES_SP_DCLx int _c);
1911
1912 #undef  UpdateAttrs
1913 #define UpdateAttrs(sp,c) NCURSES_SP_NAME(_nc_UpdateAttrs)(NCURSES_SP_ARGx CHREF(c))
1914
1915 #if USE_WIDEC_SUPPORT || defined(NEED_NCURSES_CH_T)
1916 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_UpdateAttrs) (NCURSES_SP_DCLx CARG_CH_T _c);
1917 #else
1918 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_UpdateAttrs) (NCURSES_SP_DCLx chtype c);
1919 #endif
1920
1921 #if NCURSES_SP_FUNCS
1922 extern NCURSES_EXPORT(int) _nc_DelCharCost (int);
1923 extern NCURSES_EXPORT(int) _nc_InsCharCost (int);
1924 extern NCURSES_EXPORT(void) _nc_UpdateAttrs (CARG_CH_T);
1925 #endif /* NCURSES_SP_FUNCS */
1926
1927 #else
1928
1929 extern NCURSES_EXPORT(void) _nc_expanded (void);
1930
1931 #endif
1932
1933 #if !NCURSES_EXT_FUNCS
1934 #define set_escdelay(value) ESCDELAY = value
1935 #endif
1936
1937 #if !HAVE_GETCWD
1938 #define getcwd(buf,len) getwd(buf)
1939 #endif
1940
1941 #define save_ttytype(termp) \
1942         if (TerminalType(termp).term_names != 0) { \
1943             _nc_STRNCPY(ttytype, \
1944                         TerminalType(termp).term_names, \
1945                         NAMESIZE - 1); \
1946             ttytype[NAMESIZE - 1] = '\0'; \
1947         }
1948
1949 /* charable.c */
1950 #if USE_WIDEC_SUPPORT
1951 extern NCURSES_EXPORT(bool) _nc_is_charable(wchar_t);
1952 extern NCURSES_EXPORT(int) _nc_to_char(wint_t);
1953 extern NCURSES_EXPORT(wint_t) _nc_to_widechar(int);
1954 #endif
1955
1956 /* comp_captab.c */
1957 typedef struct {
1958         short   nte_name;       /* offset of name to hash on */
1959         int     nte_type;       /* BOOLEAN, NUMBER or STRING */
1960         short   nte_index;      /* index of associated variable in its array */
1961         short   nte_link;       /* index in table of next hash, or -1 */
1962 } name_table_data;
1963
1964 typedef struct
1965 {
1966         short   from;
1967         short   to;
1968         short   source;
1969 } alias_table_data;
1970
1971 /* doupdate.c */
1972 #if USE_XMC_SUPPORT
1973 extern NCURSES_EXPORT(void) _nc_do_xmc_glitch (attr_t);
1974 #endif
1975
1976 /* hardscroll.c */
1977 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
1978 extern NCURSES_EXPORT(void) _nc_linedump (void);
1979 #endif
1980
1981 /* lib_acs.c */
1982 extern NCURSES_EXPORT(void) _nc_init_acs (void); /* corresponds to traditional 'init_acs()' */
1983 extern NCURSES_EXPORT(int)  _nc_msec_cost (const char *const, int);  /* used by 'tack' program */
1984
1985 /* lib_addch.c */
1986 #if USE_WIDEC_SUPPORT
1987 NCURSES_EXPORT(int) _nc_build_wch(WINDOW *win, ARG_CH_T ch);
1988 #endif
1989
1990 /* lib_addstr.c */
1991 #if USE_WIDEC_SUPPORT && !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
1992 extern NCURSES_EXPORT(int) _nc_wchstrlen(const cchar_t *);
1993 #endif
1994
1995 /* lib_color.c */
1996 extern NCURSES_EXPORT(int) _nc_init_color(SCREEN *, int, int, int, int);
1997 extern NCURSES_EXPORT(int) _nc_init_pair(SCREEN *, int, int, int);
1998 extern NCURSES_EXPORT(int) _nc_pair_content(SCREEN *, int, int *, int *);
1999 extern NCURSES_EXPORT(bool) _nc_reset_colors(void);
2000 extern NCURSES_EXPORT(void) _nc_change_pair(SCREEN *, int);
2001
2002 /* lib_getch.c */
2003 extern NCURSES_EXPORT(int) _nc_wgetch(WINDOW *, int *, int EVENTLIST_2nd(_nc_eventlist *));
2004
2005 /* lib_insch.c */
2006 extern NCURSES_EXPORT(int) _nc_insert_ch(SCREEN *, WINDOW *, chtype);
2007
2008 /* lib_mvcur.c */
2009 #define INFINITY        1000000 /* cost: too high to use */
2010
2011 extern NCURSES_EXPORT(int) _nc_mvcur(int yold, int xold, int ynew, int xnew);
2012
2013 extern NCURSES_EXPORT(void) _nc_mvcur_init (void);
2014 extern NCURSES_EXPORT(void) _nc_mvcur_resume (void);
2015 extern NCURSES_EXPORT(void) _nc_mvcur_wrap (void);
2016
2017 extern NCURSES_EXPORT(int) _nc_scrolln (int, int, int, int);
2018
2019 extern NCURSES_EXPORT(void) _nc_screen_init (void);
2020 extern NCURSES_EXPORT(void) _nc_screen_resume (void);
2021 extern NCURSES_EXPORT(void) _nc_screen_wrap (void);
2022
2023 /* lib_mouse.c */
2024 extern NCURSES_EXPORT(bool) _nc_has_mouse (SCREEN *);
2025
2026 /* lib_mvcur.c */
2027 #define INFINITY        1000000 /* cost: too high to use */
2028 #define BAUDBYTE        9       /* 9 = 7 bits + 1 parity + 1 stop */
2029
2030 /* lib_setup.c */
2031 extern NCURSES_EXPORT(char *) _nc_get_locale(void);
2032 extern NCURSES_EXPORT(int)    _nc_unicode_locale(void);
2033 extern NCURSES_EXPORT(int)    _nc_locale_breaks_acs(TERMINAL *);
2034 extern NCURSES_EXPORT(int)    _nc_setupterm(NCURSES_CONST char *, int, int *, int);
2035 extern NCURSES_EXPORT(void)   _nc_tinfo_cmdch(TERMINAL *, int);
2036
2037 #ifdef USE_PTHREADS
2038 extern NCURSES_EXPORT(SCREEN *) _nc_find_prescr(void);
2039 extern NCURSES_EXPORT(void)   _nc_forget_prescr(void);
2040 #else
2041 #define _nc_find_prescr()     _nc_prescreen.allocated
2042 #define _nc_forget_prescr()   _nc_prescreen.allocated = 0
2043 #endif
2044
2045 /* lib_set_term.c */
2046 extern NCURSES_EXPORT(int)    _nc_ripoffline(int, int(*)(WINDOW*, int));
2047
2048 /* lib_setup.c */
2049 #if NO_LEAKS
2050 #define ExitTerminfo(code)    _nc_free_tinfo(code)
2051 #else
2052 #define ExitTerminfo(code)    exit(code)
2053 #endif
2054
2055 #define SETUP_FAIL ERR
2056
2057 #define ret_error(code, fmt, arg)       if (errret) {\
2058                                             *errret = code;\
2059                                             returnCode(SETUP_FAIL);\
2060                                         } else {\
2061                                             fprintf(stderr, fmt, arg);\
2062                                             ExitTerminfo(EXIT_FAILURE);\
2063                                         }
2064
2065 #define ret_error1(code, fmt, arg)      ret_error(code, "'%s': " fmt, arg)
2066
2067 #define ret_error0(code, msg)           if (errret) {\
2068                                             *errret = code;\
2069                                             returnCode(SETUP_FAIL);\
2070                                         } else {\
2071                                             fprintf(stderr, msg);\
2072                                             ExitTerminfo(EXIT_FAILURE);\
2073                                         }
2074
2075 /* lib_tstp.c */
2076 #if USE_SIGWINCH
2077 extern NCURSES_EXPORT(int) _nc_handle_sigwinch(SCREEN *);
2078 #else
2079 #define _nc_handle_sigwinch(a) /* nothing */
2080 #endif
2081
2082 /* lib_wacs.c */
2083 #if USE_WIDEC_SUPPORT
2084 extern NCURSES_EXPORT(void) _nc_init_wacs(void);
2085 #endif
2086
2087 typedef struct {
2088     char *s_head;       /* beginning of the string (may be null) */
2089     char *s_tail;       /* end of the string (may be null) */
2090     size_t s_size;      /* current remaining size available */
2091     size_t s_init;      /* total size available */
2092 } string_desc;
2093
2094 /* strings.c */
2095 extern NCURSES_EXPORT(string_desc *) _nc_str_init (string_desc *, char *, size_t);
2096 extern NCURSES_EXPORT(string_desc *) _nc_str_null (string_desc *, size_t);
2097 extern NCURSES_EXPORT(string_desc *) _nc_str_copy (string_desc *, string_desc *);
2098 extern NCURSES_EXPORT(bool) _nc_safe_strcat (string_desc *, const char *);
2099 extern NCURSES_EXPORT(bool) _nc_safe_strcpy (string_desc *, const char *);
2100
2101 #if !HAVE_STRSTR
2102 #define strstr _nc_strstr
2103 extern NCURSES_EXPORT(char *) _nc_strstr (const char *, const char *);
2104 #endif
2105
2106 /* safe_sprintf.c */
2107 extern NCURSES_EXPORT(char *) _nc_printf_string (const char *, va_list);
2108
2109 /* tries.c */
2110 extern NCURSES_EXPORT(int) _nc_add_to_try (TRIES **, const char *, unsigned);
2111 extern NCURSES_EXPORT(char *) _nc_expand_try (TRIES *, unsigned, int *, size_t);
2112 extern NCURSES_EXPORT(int) _nc_remove_key (TRIES **, unsigned);
2113 extern NCURSES_EXPORT(int) _nc_remove_string (TRIES **, const char *);
2114
2115 /* elsewhere ... */
2116 extern NCURSES_EXPORT(SCREEN *) _nc_screen_of (WINDOW *);
2117 extern NCURSES_EXPORT(TERMINAL*) _nc_get_cur_term (void);
2118 extern NCURSES_EXPORT(WINDOW *) _nc_makenew (int, int, int, int, int);
2119 extern NCURSES_EXPORT(char *) _nc_trace_buf (int, size_t);
2120 extern NCURSES_EXPORT(char *) _nc_trace_bufcat (int, const char *);
2121 extern NCURSES_EXPORT(char *) _nc_tracechar (SCREEN *, int);
2122 extern NCURSES_EXPORT(char *) _nc_tracemouse (SCREEN *, MEVENT const *);
2123 extern NCURSES_EXPORT(char *) _nc_trace_mmask_t (SCREEN *, mmask_t);
2124 extern NCURSES_EXPORT(int) _nc_access (const char *, int);
2125 extern NCURSES_EXPORT(int) _nc_baudrate (int);
2126 extern NCURSES_EXPORT(int) _nc_freewin (WINDOW *);
2127 extern NCURSES_EXPORT(int) _nc_getenv_num (const char *);
2128 extern NCURSES_EXPORT(int) _nc_keypad (SCREEN *, int);
2129 extern NCURSES_EXPORT(int) _nc_ospeed (int);
2130 extern NCURSES_EXPORT(int) _nc_outch (int);
2131 extern NCURSES_EXPORT(int) _nc_putchar (int);
2132 extern NCURSES_EXPORT(int) _nc_putp(const char *, const char *);
2133 extern NCURSES_EXPORT(int) _nc_putp_flush(const char *, const char *);
2134 extern NCURSES_EXPORT(int) _nc_read_termcap_entry (const char *const, TERMTYPE2 *const);
2135 extern NCURSES_EXPORT(int) _nc_setup_tinfo(const char *, TERMTYPE2 *);
2136 extern NCURSES_EXPORT(int) _nc_setupscreen (int, int, FILE *, int, int);
2137 extern NCURSES_EXPORT(int) _nc_timed_wait (SCREEN *, int, int, int * EVENTLIST_2nd(_nc_eventlist *));
2138 extern NCURSES_EXPORT(void) _nc_init_termtype (TERMTYPE2 *const);
2139 extern NCURSES_EXPORT(void) _nc_do_color (int, int, int, NCURSES_OUTC);
2140 extern NCURSES_EXPORT(void) _nc_flush (void);
2141 extern NCURSES_EXPORT(void) _nc_free_and_exit (int) GCC_NORETURN;
2142 extern NCURSES_EXPORT(void) _nc_free_entry (ENTRY *, TERMTYPE2 *);
2143 extern NCURSES_EXPORT(void) _nc_freeall (void);
2144 extern NCURSES_EXPORT(void) _nc_hash_map (void);
2145 extern NCURSES_EXPORT(void) _nc_init_keytry (SCREEN *);
2146 extern NCURSES_EXPORT(void) _nc_keep_tic_dir (const char *);
2147 extern NCURSES_EXPORT(void) _nc_make_oldhash (int i);
2148 extern NCURSES_EXPORT(void) _nc_scroll_oldhash (int n, int top, int bot);
2149 extern NCURSES_EXPORT(void) _nc_scroll_optimize (void);
2150 extern NCURSES_EXPORT(void) _nc_set_buffer (FILE *, int);
2151 extern NCURSES_EXPORT(void) _nc_setenv_num (const char *, int);
2152 extern NCURSES_EXPORT(void) _nc_signal_handler (int);
2153 extern NCURSES_EXPORT(void) _nc_synchook (WINDOW *);
2154 extern NCURSES_EXPORT(void) _nc_trace_tries (TRIES *);
2155
2156 #if NCURSES_EXT_NUMBERS
2157 extern NCURSES_EXPORT(const TERMTYPE2 *) _nc_fallback2 (const char *);
2158 #else
2159 #define _nc_fallback2(tp) _nc_fallback(tp)
2160 #endif
2161
2162 #if NCURSES_EXT_NUMBERS
2163 extern NCURSES_EXPORT(void) _nc_copy_termtype2 (TERMTYPE2 *, const TERMTYPE2 *);
2164 extern NCURSES_EXPORT(void) _nc_export_termtype2(TERMTYPE *, const TERMTYPE2 *);
2165 extern NCURSES_EXPORT(void) _nc_import_termtype2(TERMTYPE2 *, const TERMTYPE *);
2166 #else
2167 #define _nc_copy_termtype2(dst,src) _nc_copy_termtype((dst),(src))
2168 #define _nc_export_termtype2(dst,src) /* nothing */
2169 #define _nc_import_termtype2(dst,src) /* nothing */
2170 #define _nc_free_termtype2(t) _nc_free_termtype(t)
2171 /* also... */
2172 #define _nc_read_entry2 _nc_read_entry
2173 #endif
2174
2175 #if NO_LEAKS
2176 extern NCURSES_EXPORT(void) _nc_alloc_entry_leaks(void);
2177 extern NCURSES_EXPORT(void) _nc_captoinfo_leaks(void);
2178 extern NCURSES_EXPORT(void) _nc_codes_leaks(void);
2179 extern NCURSES_EXPORT(void) _nc_comp_captab_leaks(void);
2180 extern NCURSES_EXPORT(void) _nc_comp_error_leaks(void);
2181 extern NCURSES_EXPORT(void) _nc_comp_scan_leaks(void);
2182 extern NCURSES_EXPORT(void) _nc_db_iterator_leaks(void);
2183 extern NCURSES_EXPORT(void) _nc_keyname_leaks(void);
2184 extern NCURSES_EXPORT(void) _nc_names_leaks(void);
2185 extern NCURSES_EXPORT(void) _nc_tgetent_leak(TERMINAL *);
2186 extern NCURSES_EXPORT(void) _nc_tgetent_leaks(void);
2187 #endif
2188
2189 #if !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
2190 extern NCURSES_EXPORT(NCURSES_CH_T) _nc_render (WINDOW *, NCURSES_CH_T);
2191 extern NCURSES_EXPORT(int) _nc_waddch_nosync (WINDOW *, const NCURSES_CH_T);
2192 extern NCURSES_EXPORT(void) _nc_scroll_window (WINDOW *, int const, int const, int const, NCURSES_CH_T);
2193 #endif
2194
2195 #if USE_WIDEC_SUPPORT
2196 extern NCURSES_EXPORT(int) _nc_insert_wch(WINDOW *, const cchar_t *);
2197 #endif
2198
2199 #if USE_WIDEC_SUPPORT && !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
2200 extern NCURSES_EXPORT(size_t) _nc_wcrtomb (char *, wchar_t, mbstate_t *);
2201 #endif
2202
2203 #if USE_SIZECHANGE
2204 extern NCURSES_EXPORT(void) _nc_update_screensize (SCREEN *);
2205 #endif
2206
2207 #if HAVE_RESIZETERM
2208 extern NCURSES_EXPORT(void) _nc_resize_margins (WINDOW *);
2209 #else
2210 #define _nc_resize_margins(wp) /* nothing */
2211 #endif
2212
2213 #ifdef NCURSES_WGETCH_EVENTS
2214 extern NCURSES_EXPORT(int) _nc_eventlist_timeout(_nc_eventlist *);
2215 #else
2216 #define wgetch_events(win, evl) wgetch(win)
2217 #define wgetnstr_events(win, str, maxlen, evl) wgetnstr(win, str, maxlen)
2218 #endif
2219
2220 /*
2221  * Wide-character macros to hide some platform-differences.
2222  */
2223 #if USE_WIDEC_SUPPORT
2224
2225 #if defined(__MINGW32__)
2226 /*
2227  * MinGW has wide-character functions, but they do not work correctly.
2228  */
2229
2230 extern int __MINGW_NOTHROW _nc_wctomb(char *, wchar_t);
2231 #define wctomb(s,wc) _nc_wctomb(s,wc)
2232 #define wcrtomb(s,wc,n) _nc_wctomb(s,wc)
2233
2234 extern int __MINGW_NOTHROW _nc_mbtowc(wchar_t *, const char *, size_t);
2235 #define mbtowc(pwc,s,n) _nc_mbtowc(pwc,s,n)
2236
2237 extern int __MINGW_NOTHROW _nc_mblen(const char *, size_t);
2238 #define mblen(s,n) _nc_mblen(s, n)
2239
2240 #endif /* __MINGW32__ */
2241
2242 #if HAVE_MBTOWC && HAVE_MBLEN
2243 #define reset_mbytes(state) IGNORE_RC(mblen(NULL, (size_t) 0)), IGNORE_RC(mbtowc(NULL, NULL, (size_t) 0))
2244 #define count_mbytes(buffer,length,state) mblen(buffer,length)
2245 #define check_mbytes(wch,buffer,length,state) \
2246         (int) mbtowc(&wch, buffer, length)
2247 #define state_unused
2248 #elif HAVE_MBRTOWC && HAVE_MBRLEN
2249 #define reset_mbytes(state) init_mb(state)
2250 #define count_mbytes(buffer,length,state) mbrlen(buffer,length,&state)
2251 #define check_mbytes(wch,buffer,length,state) \
2252         (int) mbrtowc(&wch, buffer, length, &state)
2253 #else
2254 make an error
2255 #endif
2256
2257 #endif /* USE_WIDEC_SUPPORT */
2258
2259 /*
2260  * Not everyone has vsscanf(), but we'd like to use it for scanw().
2261  */
2262 #if !HAVE_VSSCANF
2263 extern int vsscanf(const char *str, const char *format, va_list __arg);
2264 #endif
2265
2266 /* scroll indices */
2267 extern NCURSES_EXPORT_VAR(int *) _nc_oldnums;
2268
2269 #define USE_SETBUF_0 0
2270
2271 #define NC_OUTPUT(sp) ((sp != 0 && sp->_ofp != 0) ? sp->_ofp : stdout)
2272
2273 /*
2274  * On systems with a broken linker, define 'SP' as a function to force the
2275  * linker to pull in the data-only module with 'SP'.
2276  */
2277 #define _nc_alloc_screen_sp() typeCalloc(SCREEN, 1)
2278
2279 #if BROKEN_LINKER
2280 #define SP _nc_screen()
2281 extern NCURSES_EXPORT(SCREEN *) _nc_screen (void);
2282 extern NCURSES_EXPORT(int)      _nc_alloc_screen (void);
2283 extern NCURSES_EXPORT(void)     _nc_set_screen (SCREEN *);
2284 #define CURRENT_SCREEN          _nc_screen()
2285 #else
2286 /* current screen is private data; avoid possible linking conflicts too */
2287 extern NCURSES_EXPORT_VAR(SCREEN *) SP;
2288 #define CURRENT_SCREEN SP
2289 #define _nc_alloc_screen()      ((SP = _nc_alloc_screen_sp()) != 0)
2290 #define _nc_set_screen(sp)      SP = sp
2291 #endif
2292
2293 #if NCURSES_SP_FUNCS
2294 #define CURRENT_SCREEN_PRE      (IsPreScreen(CURRENT_SCREEN) ? CURRENT_SCREEN : new_prescr())
2295 #else
2296 #define CURRENT_SCREEN_PRE      CURRENT_SCREEN
2297 #endif
2298
2299 /*
2300  * We don't want to use the lines or columns capabilities internally, because
2301  * if the application is running multiple screens under X, it's quite possible
2302  * they could all have type xterm but have different sizes!  So...
2303  */
2304 #define screen_lines(sp)        (sp)->_lines
2305 #define screen_columns(sp)      (sp)->_columns
2306
2307 extern NCURSES_EXPORT(int) _nc_slk_initialize (WINDOW *, int);
2308 extern NCURSES_EXPORT(int) _nc_format_slks (NCURSES_SP_DCLx int _c);
2309
2310 /*
2311  * Some constants related to SLK's
2312  */
2313 #define MAX_SKEY_OLD       8    /* count of soft keys */
2314 #define MAX_SKEY_LEN_OLD   8    /* max length of soft key text */
2315 #define MAX_SKEY_PC       12    /* This is what most PC's have */
2316 #define MAX_SKEY_LEN_PC    5
2317
2318 /* Macro to check whether or not we use a standard format */
2319 #define SLK_STDFMT(fmt) (fmt < 3)
2320 /* Macro to determine height of label window */
2321 #define SLK_LINES(fmt)  (SLK_STDFMT(fmt) ? 1 : ((fmt) - 2))
2322
2323 #define MAX_SKEY(fmt)     (SLK_STDFMT(fmt)? MAX_SKEY_OLD : MAX_SKEY_PC)
2324 #define MAX_SKEY_LEN(fmt) (SLK_STDFMT(fmt)? MAX_SKEY_LEN_OLD : MAX_SKEY_LEN_PC)
2325
2326 /*
2327  * Common error messages
2328  */
2329 #define MSG_NO_MEMORY "Out of memory"
2330 #define MSG_NO_INPUTS "Premature EOF"
2331
2332 extern NCURSES_EXPORT(int) _nc_set_tty_mode(TTY *);
2333 extern NCURSES_EXPORT(int) _nc_get_tty_mode(TTY *);
2334
2335 /* timed_wait flag definitions */
2336 #define TW_NONE    0
2337 #define TW_INPUT   1
2338 #define TW_MOUSE   2
2339 #define TW_ANY     (TW_INPUT | TW_MOUSE)
2340 #define TW_EVENT   4
2341
2342 #define SetSafeOutcWrapper(outc)            \
2343     SCREEN* sp = CURRENT_SCREEN;            \
2344     struct screen outc_wrapper;             \
2345     if (sp==0) {                            \
2346         sp = &outc_wrapper;                 \
2347         memset(sp,0,sizeof(struct screen)); \
2348         sp->_outch = _nc_outc_wrapper;      \
2349     }\
2350     sp->jump = outc
2351
2352 #ifdef USE_TERM_DRIVER
2353
2354 typedef struct _termInfo
2355 {
2356     bool caninit;
2357
2358     bool hascolor;
2359     bool initcolor;
2360     bool canchange;
2361
2362     int  tabsize;
2363
2364     int  maxcolors;
2365     int  maxpairs;
2366     int  nocolorvideo;
2367
2368     int  numbuttons;
2369     int  numlabels;
2370     int  labelwidth;
2371     int  labelheight;
2372
2373     const color_t* defaultPalette;
2374 } TerminalInfo;
2375
2376 typedef struct term_driver {
2377     bool   isTerminfo;
2378     const char* (*td_name)(struct DriverTCB*);
2379     bool   (*td_CanHandle)(struct DriverTCB*, const char*, int*);
2380     void   (*td_init)(struct DriverTCB*);
2381     void   (*td_release)(struct DriverTCB*);
2382     int    (*td_size)(struct DriverTCB*, int* Line, int *Cols);
2383     int    (*td_sgmode)(struct DriverTCB*, int setFlag, TTY*);
2384     chtype (*td_conattr)(struct DriverTCB*);
2385     int    (*td_hwcur)(struct DriverTCB*, int yold, int xold, int y, int x);
2386     int    (*td_mode)(struct DriverTCB*, int progFlag, int defFlag);
2387     bool   (*td_rescol)(struct DriverTCB*);
2388     bool   (*td_rescolors)(struct DriverTCB*);
2389     void   (*td_color)(struct DriverTCB*, int fore, int color, int(*)(SCREEN*, int));
2390     int    (*td_doBeepOrFlash)(struct DriverTCB*, int);
2391     void   (*td_initpair)(struct DriverTCB*, int, int, int);
2392     void   (*td_initcolor)(struct DriverTCB*, int, int, int, int);
2393     void   (*td_docolor)(struct DriverTCB*, int, int, int, int(*)(SCREEN*, int));
2394     void   (*td_initmouse)(struct DriverTCB*);
2395     int    (*td_testmouse)(struct DriverTCB*, int EVENTLIST_2nd(_nc_eventlist*));
2396     void   (*td_setfilter)(struct DriverTCB*);
2397     void   (*td_hwlabel)(struct DriverTCB*, int, char*);
2398     void   (*td_hwlabelOnOff)(struct DriverTCB*, int);
2399     int    (*td_update)(struct DriverTCB*);
2400     int    (*td_defaultcolors)(struct DriverTCB*, int, int);
2401     int    (*td_print)(struct DriverTCB*, char*, int);
2402     int    (*td_getsize)(struct DriverTCB*, int*, int*);
2403     int    (*td_setsize)(struct DriverTCB*, int, int);
2404     void   (*td_initacs)(struct DriverTCB*, chtype*, chtype*);
2405     void   (*td_scinit)(SCREEN *);
2406     void   (*td_scexit)(SCREEN *);
2407     int    (*td_twait)(struct DriverTCB*, int, int, int* EVENTLIST_2nd(_nc_eventlist*));
2408     int    (*td_read)(struct DriverTCB*, int*);
2409     int    (*td_nap)(struct DriverTCB*, int);
2410     int    (*td_kpad)(struct DriverTCB*, int);
2411     int    (*td_kyOk)(struct DriverTCB*, int, int);
2412     bool   (*td_kyExist)(struct DriverTCB*, int);
2413     int    (*td_cursorSet)(struct DriverTCB*, int);
2414 } TERM_DRIVER;
2415
2416 typedef struct DriverTCB
2417 {
2418     TERMINAL      term;   /* needs to be the first Element !!! */
2419     TERM_DRIVER*  drv;    /* The driver for that Terminal */
2420     SCREEN*       csp;    /* The screen that owns that Terminal */
2421     TerminalInfo  info;   /* Driver independent core capabilities of the Terminal */
2422     void*         prop;   /* Driver dependent property storage to be used by the Driver */
2423     long          magic;
2424 } TERMINAL_CONTROL_BLOCK;
2425
2426 #define NCDRV_MAGIC(id) (0x47110000 | (id&0xffff))
2427 #define NCDRV_TINFO      0x01
2428 #define NCDRV_WINCONSOLE 0x02
2429
2430 #define TCBOf(sp)    ((TERMINAL_CONTROL_BLOCK*)(TerminalOf(sp)))
2431 #define InfoOf(sp)   TCBOf(sp)->info
2432 #define CallDriver(sp,method)                        TCBOf(sp)->drv->method(TCBOf(sp))
2433 #define CallDriver_1(sp,method,arg1)                 TCBOf(sp)->drv->method(TCBOf(sp),arg1)
2434 #define CallDriver_2(sp,method,arg1,arg2)            TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2)
2435 #define CallDriver_3(sp,method,arg1,arg2,arg3)       TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3)
2436 #define CallDriver_4(sp,method,arg1,arg2,arg3,arg4)  TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3,arg4)
2437
2438 extern NCURSES_EXPORT_VAR(const color_t*) _nc_cga_palette;
2439 extern NCURSES_EXPORT_VAR(const color_t*) _nc_hls_palette;
2440
2441 extern NCURSES_EXPORT(int)      _nc_get_driver(TERMINAL_CONTROL_BLOCK*, const char*, int*);
2442 extern NCURSES_EXPORT(void)     _nc_get_screensize_ex(SCREEN *, TERMINAL *, int *, int *);
2443 #endif /* USE_TERM_DRIVER */
2444
2445 /*
2446  * Entrypoints which are actually provided in the terminal driver, which would
2447  * be an sp-name otherwise.
2448  */
2449 #ifdef USE_TERM_DRIVER
2450 #define TINFO_HAS_KEY           _nc_tinfo_has_key
2451 #define TINFO_DOUPDATE          _nc_tinfo_doupdate
2452 #define TINFO_MVCUR             _nc_tinfo_mvcur
2453 extern NCURSES_EXPORT(int)      TINFO_HAS_KEY(SCREEN*, int);
2454 extern NCURSES_EXPORT(int)      TINFO_DOUPDATE(SCREEN *);
2455 extern NCURSES_EXPORT(int)      TINFO_MVCUR(SCREEN*, int, int, int, int);
2456 #else
2457 #define TINFO_HAS_KEY           NCURSES_SP_NAME(has_key)
2458 #define TINFO_DOUPDATE          NCURSES_SP_NAME(doupdate)
2459 #define TINFO_MVCUR             NCURSES_SP_NAME(_nc_mvcur)
2460 #endif
2461
2462 /*
2463  * Entrypoints using an extra parameter with the terminal driver.
2464  */
2465 #ifdef USE_TERM_DRIVER
2466 extern NCURSES_EXPORT(void)   _nc_get_screensize(SCREEN *, TERMINAL *, int *, int *);
2467 extern NCURSES_EXPORT(int)    _nc_setupterm_ex(TERMINAL **, NCURSES_CONST char *, int , int *, int);
2468 #define TINFO_GET_SIZE(sp, tp, lp, cp) \
2469         _nc_get_screensize(sp, tp, lp, cp)
2470 #define TINFO_SET_CURTERM(sp, tp) \
2471         NCURSES_SP_NAME(set_curterm)(sp, tp)
2472 #define TINFO_SETUP_TERM(tpp, name, fd, err, reuse) \
2473         _nc_setupterm_ex(tpp, name, fd, err, reuse)
2474 #else /* !USE_TERM_DRIVER */
2475 extern NCURSES_EXPORT(void)   _nc_get_screensize(SCREEN *, int *, int *);
2476 #define TINFO_GET_SIZE(sp, tp, lp, cp) \
2477         _nc_get_screensize(sp, lp, cp)
2478 #define TINFO_SET_CURTERM(sp, tp) \
2479         set_curterm(tp)
2480 #define TINFO_SETUP_TERM(tpp, name, fd, err, reuse) \
2481         _nc_setupterm(name, fd, err, reuse)
2482 #endif /* !USE_TERM_DRIVER */
2483
2484 #ifdef USE_TERM_DRIVER
2485 #if defined(USE_WIN32CON_DRIVER)
2486 #include <nc_mingw.h>
2487 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_WIN_DRIVER;
2488 extern NCURSES_EXPORT(int)  _nc_mingw_isatty(int fd);
2489 extern NCURSES_EXPORT(int)  _nc_mingw_isconsole(int fd);
2490 extern NCURSES_EXPORT(int) _nc_mingw_console_read(
2491     SCREEN *sp,
2492     HANDLE  fd,
2493     int *buf);
2494 extern NCURSES_EXPORT(int) _nc_mingw_testmouse(
2495     SCREEN * sp,
2496     HANDLE fd,
2497     int delay);
2498 #else
2499 #endif
2500 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_TINFO_DRIVER;
2501 #endif
2502
2503 #if defined(USE_TERM_DRIVER) && defined(USE_WIN32CON_DRIVER)
2504 #define NC_ISATTY(fd) _nc_mingw_isatty(fd)
2505 #else
2506 #define NC_ISATTY(fd) isatty(fd)
2507 #endif
2508
2509 #ifdef USE_TERM_DRIVER
2510 #  define IsTermInfo(sp)       ((TCBOf(sp) != 0) && ((TCBOf(sp)->drv->isTerminfo)))
2511 #  define HasTInfoTerminal(sp) ((0 != TerminalOf(sp)) && IsTermInfo(sp))
2512 #  if defined(USE_WIN32CON_DRIVER)
2513 #    define IsTermInfoOnConsole(sp) (IsTermInfo(sp)&&_nc_mingw_isconsole(TerminalOf(sp)->Filedes))
2514 #else
2515 #    define IsTermInfoOnConsole(sp) FALSE
2516 #  endif
2517 #else
2518 #  define IsTermInfo(sp)       TRUE
2519 #  define HasTInfoTerminal(sp) (0 != TerminalOf(sp))
2520 #  define IsTermInfoOnConsole(sp) FALSE
2521 #endif
2522
2523 #define IsValidTIScreen(sp)  (HasTInfoTerminal(sp))
2524
2525 /*
2526  * Exported entrypoints beyond the published API
2527  */
2528 #if NCURSES_SP_FUNCS
2529 extern NCURSES_EXPORT(WINDOW *) _nc_curscr_of(SCREEN*);
2530 extern NCURSES_EXPORT(WINDOW *) _nc_newscr_of(SCREEN*);
2531 extern NCURSES_EXPORT(WINDOW *) _nc_stdscr_of(SCREEN*);
2532 extern NCURSES_EXPORT(int)      _nc_outc_wrapper(SCREEN*,int);
2533
2534 #if USE_REENTRANT
2535 extern NCURSES_EXPORT(int)       NCURSES_SP_NAME(_nc_TABSIZE)(SCREEN*);
2536 extern NCURSES_EXPORT(char *)    NCURSES_SP_NAME(longname)(SCREEN*);
2537 #endif
2538
2539 #if NCURSES_EXT_FUNCS
2540 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tabsize)(SCREEN*, int);
2541 #endif
2542
2543 /*
2544  * We put the safe versions of various calls here as they are not published
2545  * part of the API up to now
2546  */
2547 extern NCURSES_EXPORT(TERMINAL*) NCURSES_SP_NAME(_nc_get_cur_term) (SCREEN *sp);
2548 extern NCURSES_EXPORT(WINDOW *) NCURSES_SP_NAME(_nc_makenew) (SCREEN*, int, int, int, int, int);
2549 extern NCURSES_EXPORT(bool)     NCURSES_SP_NAME(_nc_reset_colors)(SCREEN*);
2550 extern NCURSES_EXPORT(char *)   NCURSES_SP_NAME(_nc_printf_string)(SCREEN*, const char *, va_list);
2551 extern NCURSES_EXPORT(chtype)   NCURSES_SP_NAME(_nc_acs_char)(SCREEN*,int);
2552 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_get_tty_mode)(SCREEN*,TTY*);
2553 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_mcprint)(SCREEN*,char*, int);
2554 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_msec_cost)(SCREEN*, const char *, int);
2555 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_mvcur)(SCREEN*, int, int, int, int);
2556 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_outch)(SCREEN*, int);
2557 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putchar)(SCREEN*, int);
2558 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp)(SCREEN*, const char *, const char*);
2559 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp_flush)(SCREEN*, const char *, const char *);
2560 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_ripoffline)(SCREEN*, int, int (*)(WINDOW *,int));
2561 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scrolln)(SCREEN*, int, int, int, int);
2562 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tty_mode)(SCREEN*, TTY*);
2563 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_setupscreen)(SCREEN**, int, int, FILE *, int, int);
2564 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_tgetent)(SCREEN*,char*,const char *);
2565 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_color)(SCREEN*, int, int, int, NCURSES_SP_OUTC);
2566 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_xmc_glitch)(SCREEN*, attr_t);
2567 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_flush)(SCREEN*);
2568 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_free_and_exit)(SCREEN*, int) GCC_NORETURN;
2569 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_freeall)(SCREEN*);
2570 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_hash_map)(SCREEN*);
2571 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_init_acs)(SCREEN*);
2572 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_make_oldhash)(SCREEN*, int i);
2573 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_init)(SCREEN*);
2574 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_resume)(SCREEN*);
2575 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_wrap)(SCREEN*);
2576 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_init)(SCREEN*);
2577 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_resume)(SCREEN*);
2578 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_wrap)(SCREEN*);
2579 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_oldhash)(SCREEN*, int n, int top, int bot);
2580 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_optimize)(SCREEN*);
2581 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_set_buffer)(SCREEN*, FILE *, int);
2582
2583 extern NCURSES_EXPORT(void)     _nc_cookie_init(SCREEN *sp);
2584
2585 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
2586 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_linedump)(SCREEN*);
2587 #endif
2588
2589 #if USE_WIDEC_SUPPORT
2590 extern NCURSES_EXPORT(wchar_t *) NCURSES_SP_NAME(_nc_wunctrl)(SCREEN*, cchar_t *);
2591 #endif
2592
2593 #endif /* NCURSES_SP_FUNCS */
2594
2595 #if NCURSES_SP_FUNCS
2596
2597 #define safe_keyname NCURSES_SP_NAME(keyname)
2598 #define safe_unctrl  NCURSES_SP_NAME(unctrl)
2599 #define safe_ungetch NCURSES_SP_NAME(ungetch)
2600
2601 #else
2602
2603 #define safe_keyname _nc_keyname
2604 #define safe_unctrl  _nc_unctrl
2605 #define safe_ungetch _nc_ungetch
2606
2607 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_keyname (SCREEN *, int);
2608 extern NCURSES_EXPORT(int) _nc_ungetch (SCREEN *, int);
2609 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_unctrl (SCREEN *, chtype);
2610
2611 #endif
2612
2613 #ifdef EXP_XTERM_1005
2614 NCURSES_EXPORT(int) _nc_conv_to_utf8(unsigned char *, unsigned, unsigned);
2615 NCURSES_EXPORT(int) _nc_conv_to_utf32(unsigned *, const char *, unsigned);
2616 #endif
2617
2618 #ifdef __cplusplus
2619 }
2620 #endif
2621
2622 /* *INDENT-ON* */
2623
2624 #endif /* CURSES_PRIV_H */