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