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