]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/curses.priv.h
ncurses 5.6 - patch 20080524
[ncurses.git] / ncurses / curses.priv.h
1 /****************************************************************************
2  * Copyright (c) 1998-2007,2008 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  ****************************************************************************/
34
35
36 /*
37  * $Id: curses.priv.h,v 1.375 2008/05/24 23:08:27 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
49 #include <ncurses_dll.h>
50
51 #ifdef __cplusplus
52 extern "C" {
53 #endif
54
55 #include <ncurses_cfg.h>
56
57 #if USE_RCS_IDS
58 #define MODULE_ID(id) static const char Ident[] = id;
59 #else
60 #define MODULE_ID(id) /*nothing*/
61 #endif
62
63 #include <stdlib.h>
64 #include <string.h>
65 #include <sys/types.h>
66
67 #if HAVE_UNISTD_H
68 #include <unistd.h>
69 #endif
70
71 #if HAVE_SYS_BSDTYPES_H
72 #include <sys/bsdtypes.h>       /* needed for ISC */
73 #endif
74
75 #if HAVE_LIMITS_H
76 # include <limits.h>
77 #elif HAVE_SYS_PARAM_H
78 # include <sys/param.h>
79 #endif
80
81 #include <assert.h>
82 #include <stdio.h>
83
84 #include <errno.h>
85
86 #ifndef PATH_MAX
87 # if defined(_POSIX_PATH_MAX)
88 #  define PATH_MAX _POSIX_PATH_MAX
89 # elif defined(MAXPATHLEN)
90 #  define PATH_MAX MAXPATHLEN
91 # else
92 #  define PATH_MAX 255  /* the Posix minimum path-size */
93 # endif
94 #endif
95
96 #if DECL_ERRNO
97 extern int errno;
98 #endif
99
100 #include <nc_panel.h>
101
102 /* Some systems have a broken 'select()', but workable 'poll()'.  Use that */
103 #if HAVE_WORKING_POLL
104 #define USE_FUNC_POLL 1
105 #if HAVE_POLL_H
106 #include <poll.h>
107 #else
108 #include <sys/poll.h>
109 #endif
110 #else
111 #define USE_FUNC_POLL 0
112 #endif
113
114 /* include signal.h before curses.h to work-around defect in glibc 2.1.3 */
115 #include <signal.h>
116
117 /* Alessandro Rubini's GPM (general-purpose mouse) */
118 #if HAVE_LIBGPM && HAVE_GPM_H
119 #define USE_GPM_SUPPORT 1
120 #else
121 #define USE_GPM_SUPPORT 0
122 #endif
123
124 /* QNX mouse support */
125 #if defined(__QNX__) && !defined(__QNXNTO__)
126 #define USE_QNX_MOUSE 1
127 #else
128 #define USE_QNX_MOUSE 0
129 #endif
130
131 /* EMX mouse support */
132 #ifdef __EMX__
133 #define USE_EMX_MOUSE 1
134 #else
135 #define USE_EMX_MOUSE 0
136 #endif
137
138 #define DEFAULT_MAXCLICK 166
139 #define EV_MAX          8       /* size of mouse circular event queue */
140
141 /*
142  * If we don't have signals to support it, don't add a sigwinch handler.
143  * In any case, resizing is an extended feature.  Use it if we've got it.
144  */
145 #if !NCURSES_EXT_FUNCS
146 #undef HAVE_SIZECHANGE
147 #define HAVE_SIZECHANGE 0
148 #endif
149
150 #if HAVE_SIZECHANGE && defined(SIGWINCH)
151 #define USE_SIZECHANGE 1
152 #else
153 #define USE_SIZECHANGE 0
154 #undef USE_SIGWINCH
155 #define USE_SIGWINCH 0
156 #endif
157
158 /*
159  * If desired, one can configure this, disabling environment variables that
160  * point to custom terminfo/termcap locations.
161  */
162 #ifdef USE_ROOT_ENVIRON
163 #define use_terminfo_vars() 1
164 #else
165 #define use_terminfo_vars() _nc_env_access()
166 extern NCURSES_EXPORT(int) _nc_env_access (void);
167 #endif
168
169 /*
170  * Not all platforms have memmove; some have an equivalent bcopy.  (Some may
171  * have neither).
172  */
173 #if USE_OK_BCOPY
174 #define memmove(d,s,n) bcopy(s,d,n)
175 #elif USE_MY_MEMMOVE
176 #define memmove(d,s,n) _nc_memmove(d,s,n)
177 extern NCURSES_EXPORT(void *) _nc_memmove (void *, const void *, size_t);
178 #endif
179
180 /*
181  * Scroll hints are useless when hashmap is used
182  */
183 #if !USE_SCROLL_HINTS
184 #if !USE_HASHMAP
185 #define USE_SCROLL_HINTS 1
186 #else
187 #define USE_SCROLL_HINTS 0
188 #endif
189 #endif
190
191 #if USE_SCROLL_HINTS
192 #define if_USE_SCROLL_HINTS(stmt) stmt
193 #else
194 #define if_USE_SCROLL_HINTS(stmt) /*nothing*/
195 #endif
196
197 /*
198  * Note:  ht/cbt expansion flakes out randomly under Linux 1.1.47, but only
199  * when we're throwing control codes at the screen at high volume.  To see
200  * this, re-enable USE_HARD_TABS and run worm for a while.  Other systems
201  * probably don't want to define this either due to uncertainties about tab
202  * delays and expansion in raw mode.
203  */
204
205 #define TRIES struct tries
206 typedef TRIES {
207         TRIES    *child;            /* ptr to child.  NULL if none          */
208         TRIES    *sibling;          /* ptr to sibling.  NULL if none        */
209         unsigned char    ch;        /* character at this node               */
210         unsigned short   value;     /* code of string so far.  0 if none.   */
211 #undef TRIES
212 } TRIES;
213
214 /*
215  * Common/troublesome character definitions
216  */
217 #define StringOf(ch) {ch, 0}
218
219 #define L_BRACE '{'
220 #define R_BRACE '}'
221 #define S_QUOTE '\''
222 #define D_QUOTE '"'
223
224 #define VT_ACSC "``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~"
225
226 /*
227  * Structure for palette tables
228  */
229
230 typedef struct
231 {
232     short red, green, blue;     /* what color_content() returns */
233     short r, g, b;              /* params to init_color() */
234     int init;                   /* true if we called init_color() */
235 }
236 color_t;
237
238 #define MAXCOLUMNS    135
239 #define MAXLINES      66
240 #define FIFO_SIZE     MAXCOLUMNS+2  /* for nocbreak mode input */
241
242 #define ACS_LEN       128
243
244 #define WINDOWLIST struct _win_list
245
246 #if USE_WIDEC_SUPPORT
247 #define _nc_bkgd    _bkgrnd
248 #else
249 #undef _XOPEN_SOURCE_EXTENDED
250 #define _nc_bkgd    _bkgd
251 #define wgetbkgrnd(win, wch)    *wch = win->_bkgd
252 #define wbkgrnd     wbkgd
253 #endif
254
255 #undef NCURSES_OPAQUE
256 #define NCURSES_INTERNALS 1
257 #define NCURSES_OPAQUE 0
258
259 #include <curses.h>     /* we'll use -Ipath directive to get the right one! */
260 #include <term.h>
261 #include <term_entry.h>
262 #include <nc_tparm.h>
263
264 #if NCURSES_EXT_COLORS && USE_WIDEC_SUPPORT
265 #define if_EXT_COLORS(stmt)     stmt
266 #define NetPair(value,p)        (value).ext_color = (p), \
267                                 AttrOf(value) &= ALL_BUT_COLOR, \
268                                 AttrOf(value) |= (A_COLOR & COLOR_PAIR((p > 255) ? 255 : p))
269 #define SetPair(value,p)        (value).ext_color = (p)
270 #define GetPair(value)          (value).ext_color
271 #define unColor(n)              (AttrOf(n) & ALL_BUT_COLOR)
272 #define GET_WINDOW_PAIR(w)      (w)->_color
273 #define SET_WINDOW_PAIR(w,p)    (w)->_color = (p)
274 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b) && GetPair(a) == GetPair(b))
275 #define VIDATTR(attr, pair)     vid_attr(attr, pair, 0)
276 #else
277 #define if_EXT_COLORS(stmt)     /* nothing */
278 #define SetPair(value,p)        RemAttr(value, A_COLOR), \
279                                 SetAttr(value, AttrOf(value) | (A_COLOR & COLOR_PAIR(p)))
280 #define GetPair(value)          PAIR_NUMBER(AttrOf(value))
281 #define unColor(n)              (AttrOf(n) & ALL_BUT_COLOR)
282 #define GET_WINDOW_PAIR(w)      PAIR_NUMBER(WINDOW_ATTRS(w))
283 #define SET_WINDOW_PAIR(w,p)    WINDOW_ATTRS(w) &= ALL_BUT_COLOR, \
284                                 WINDOW_ATTRS(w) |= (A_COLOR & COLOR_PAIR(p))
285 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b))
286 #define VIDATTR(attr, pair)     vidattr(attr)
287 #endif
288
289 #define WINDOW_ATTRS(w)         ((w)->_attrs)
290
291 #define SCREEN_ATTRS(s)         (*((s)->_current_attr))
292 #define GET_SCREEN_PAIR(s)      GetPair(SCREEN_ATTRS(s))
293 #define SET_SCREEN_PAIR(s,p)    SetPair(SCREEN_ATTRS(s), p)
294
295 #if USE_REENTRANT
296 NCURSES_EXPORT(int *) _nc_ptr_Lines (void);
297 NCURSES_EXPORT(int *) _nc_ptr_Cols (void);
298 #define ptrLines() (SP ? &(SP->_LINES) : &(_nc_prescreen._LINES))
299 #define ptrCols()  (SP ? &(SP->_COLS)  : &(_nc_prescreen._COLS))
300 #define SET_LINES(value) *_nc_ptr_Lines() = value
301 #define SET_COLS(value)  *_nc_ptr_Cols() = value
302 #else
303 #define ptrLines() &LINES
304 #define ptrCols()  &COLS
305 #define SET_LINES(value) LINES = value
306 #define SET_COLS(value)  COLS = value
307 #endif
308
309 #define TR_MUTEX(data) _tracef("%s@%d: me:%08lX COUNT:%2u/%2d/%6d/%2d/%s%9u: " #data, \
310             __FILE__, __LINE__, \
311             (unsigned long) (pthread_self()), \
312             data.__data.__lock, \
313             data.__data.__count, \
314             data.__data.__owner, \
315             data.__data.__kind, \
316             (data.__data.__nusers > 5) ? " OOPS " : "", \
317             data.__data.__nusers)
318 #define TR_GLOBAL_MUTEX(name) TR_MUTEX(_nc_globals.mutex_##name)
319
320 #ifdef USE_PTHREADS
321
322 #if USE_REENTRANT
323 #include <pthread.h>
324 extern NCURSES_EXPORT(void) _nc_mutex_init(pthread_mutex_t *);
325 extern NCURSES_EXPORT(int) _nc_mutex_lock(pthread_mutex_t *);
326 extern NCURSES_EXPORT(int) _nc_mutex_trylock(pthread_mutex_t *);
327 extern NCURSES_EXPORT(int) _nc_mutex_unlock(pthread_mutex_t *);
328 #define _nc_lock_global(name)   _nc_mutex_lock(&_nc_globals.mutex_##name)
329 #define _nc_try_global(name)    _nc_mutex_trylock(&_nc_globals.mutex_##name)
330 #define _nc_unlock_global(name) _nc_mutex_unlock(&_nc_globals.mutex_##name)
331
332 extern NCURSES_EXPORT(void) _nc_lock_window(const WINDOW *);
333 extern NCURSES_EXPORT(void) _nc_unlock_window(const WINDOW *);
334
335 #else
336 #error POSIX threads requires --enable-reentrant option
337 #endif
338
339 #if HAVE_NANOSLEEP
340 #undef HAVE_NANOSLEEP
341 #define HAVE_NANOSLEEP 0        /* nanosleep suspends all threads */
342 #endif
343
344 #else /* !USE_PTHREADS */
345
346 #define _nc_mutex_init(obj)     /* nothing */
347
348 #define _nc_lock_global(name)   /* nothing */
349 #define _nc_try_global(name)    0
350 #define _nc_unlock_global(name) /* nothing */
351
352 #define _nc_lock_window(name)   (void) TRUE
353 #define _nc_unlock_window(name) /* nothing */
354
355 #endif /* USE_PTHREADS */
356
357 #if HAVE_GETTIMEOFDAY
358 # define PRECISE_GETTIME 1
359 # define TimeType struct timeval
360 #else
361 # define PRECISE_GETTIME 0
362 # define TimeType time_t
363 #endif
364
365 /*
366  * Definitions for color pairs
367  */
368 typedef unsigned colorpair_t;   /* type big enough to store PAIR_OF() */
369 #define C_SHIFT 9               /* we need more bits than there are colors */
370 #define C_MASK                  ((1 << C_SHIFT) - 1)
371 #define PAIR_OF(fg, bg)         ((((fg) & C_MASK) << C_SHIFT) | ((bg) & C_MASK))
372 #define isDefaultColor(c)       ((c) >= COLOR_DEFAULT || (c) < 0)
373
374 #define COLOR_DEFAULT           C_MASK
375
376 #if defined(USE_TERMLIB) && !defined(NEED_NCURSES_CH_T)
377
378 #undef NCURSES_CH_T             /* this is not a termlib feature */
379 #define NCURSES_CH_T void       /* ...but we need a pointer in SCREEN */
380
381 #endif  /* USE_TERMLIB */
382
383 #ifndef USE_TERMLIB
384 struct ldat
385 {
386         NCURSES_CH_T    *text;          /* text of the line */
387         NCURSES_SIZE_T  firstchar;      /* first changed character in the line */
388         NCURSES_SIZE_T  lastchar;       /* last changed character in the line */
389         NCURSES_SIZE_T  oldindex;       /* index of the line at last update */
390 };
391 #endif  /* USE_TERMLIB */
392
393 typedef enum {
394         M_XTERM = -1            /* use xterm's mouse tracking? */
395         ,M_NONE = 0             /* no mouse device */
396 #if USE_GPM_SUPPORT
397         ,M_GPM                  /* use GPM */
398 #endif
399 #if USE_SYSMOUSE
400         ,M_SYSMOUSE             /* FreeBSD sysmouse on console */
401 #endif
402 } MouseType;
403
404 /*
405  * Structures for scrolling.
406  */
407
408 typedef struct {
409         unsigned long hashval;
410         int oldcount, newcount;
411         int oldindex, newindex;
412 } HASHMAP;
413
414 /*
415  * Structures for soft labels.
416  */
417
418 struct _SLK;
419
420 #ifndef USE_TERMLIB
421
422 typedef struct
423 {
424         char *ent_text;         /* text for the label */
425         char *form_text;        /* formatted text (left/center/...) */
426         int ent_x;              /* x coordinate of this field */
427         char dirty;             /* this label has changed */
428         char visible;           /* field is visible */
429 } slk_ent;
430
431 typedef struct _SLK {
432         char dirty;             /* all labels have changed */
433         char hidden;            /* soft labels are hidden */
434         WINDOW *win;
435         slk_ent *ent;
436         short  maxlab;          /* number of available labels */
437         short  labcnt;          /* number of allocated labels */
438         short  maxlen;          /* length of labels */
439         NCURSES_CH_T attr;      /* soft label attribute */
440 } SLK;
441
442 #endif  /* USE_TERMLIB */
443
444 typedef struct {
445         WINDOW *win;            /* the window used in the hook      */
446         int     line;           /* lines to take, < 0 => from bottom*/
447         int     (*hook)(WINDOW *, int); /* callback for user        */
448 } ripoff_t;
449
450 #if USE_GPM_SUPPORT
451 #undef buttons                  /* term.h defines this, and gpm uses it! */
452 #include <gpm.h>
453
454 #ifdef HAVE_LIBDL
455 /* link dynamically to GPM */
456 typedef int *TYPE_gpm_fd;
457 typedef int (*TYPE_Gpm_Open) (Gpm_Connect *, int);
458 typedef int (*TYPE_Gpm_Close) (void);
459 typedef int (*TYPE_Gpm_GetEvent) (Gpm_Event *);
460
461 #define my_gpm_fd       SP->_mouse_gpm_fd
462 #define my_Gpm_Open     SP->_mouse_Gpm_Open
463 #define my_Gpm_Close    SP->_mouse_Gpm_Close
464 #define my_Gpm_GetEvent SP->_mouse_Gpm_GetEvent
465 #else
466 /* link statically to GPM */
467 #define my_gpm_fd       &gpm_fd
468 #define my_Gpm_Open     Gpm_Open
469 #define my_Gpm_Close    Gpm_Close
470 #define my_Gpm_GetEvent Gpm_GetEvent
471 #endif /* HAVE_LIBDL */
472 #endif /* USE_GPM_SUPPORT */
473
474 typedef struct {
475     long sequence;
476     bool last_used;
477     char *fix_sgr0;             /* this holds the filtered sgr0 string */
478     char *last_bufp;            /* help with fix_sgr0 leak */
479     TERMINAL *last_term;
480 } TGETENT_CACHE;
481
482 #define TGETENT_MAX 4
483
484 /*
485  * State of tparm().
486  */
487 #define STACKSIZE 20
488
489 typedef struct {
490         union {
491                 int     num;
492                 char    *str;
493         } data;
494         bool num_type;
495 } STACK_FRAME;
496
497 #define NUM_VARS 26
498
499 typedef struct {
500 #ifdef TRACE
501         const char      *tname;
502 #endif
503         const char      *tparam_base;
504
505         STACK_FRAME     stack[STACKSIZE];
506         int             stack_ptr;
507
508         char            *out_buff;
509         size_t          out_size;
510         size_t          out_used;
511
512         char            *fmt_buff;
513         size_t          fmt_size;
514
515         int             dynamic_var[NUM_VARS];
516         int             static_vars[NUM_VARS];
517 } TPARM_STATE;
518
519 typedef struct {
520     char *text;
521     size_t size;
522 } TRACEBUF;
523
524 /*
525  * The filesystem database normally uses a single-letter for the lower level
526  * of directories.  Use a hexadecimal code for filesystems which do not
527  * preserve mixed-case names.
528  */
529 #if MIXEDCASE_FILENAMES
530 #define LEAF_FMT "%c"
531 #else
532 #define LEAF_FMT "%02x"
533 #endif
534
535 /*
536  * TRACEMSE_FMT is no longer than 80 columns, there are 5 numbers that
537  * could at most have 10 digits, and the mask contains no more than 32 bits
538  * with each bit representing less than 15 characters.  Usually the whole
539  * string is less than 80 columns, but this buffer size is an absolute
540  * limit.
541  */
542 #define TRACEMSE_MAX    (80 + (5 * 10) + (32 * 15))
543 #define TRACEMSE_FMT    "id %2d  at (%2d, %2d, %2d) state %4lx = {" /* } */
544
545 /*
546  * Global data which is not specific to a screen.
547  */
548 typedef struct {
549         SIG_ATOMIC_T    have_sigwinch;
550         SIG_ATOMIC_T    cleanup_nested;
551
552         bool            init_signals;
553         bool            init_screen;
554
555         const char      *comp_sourcename;
556         char            *comp_termtype;
557
558         bool            have_tic_directory;
559         bool            keep_tic_directory;
560         const char      *tic_directory;
561
562         char            *dbi_list;
563         int             dbi_size;
564
565         char            *first_name;
566         char            **keyname_table;
567
568         int             slk_format;
569
570         char            *safeprint_buf;
571         size_t          safeprint_used;
572
573         TGETENT_CACHE   tgetent_cache[TGETENT_MAX];
574         int             tgetent_index;
575         long            tgetent_sequence;
576
577         WINDOWLIST      *_nc_windowlist;
578 #define _nc_windows     _nc_globals._nc_windowlist
579
580 #if USE_HOME_TERMINFO
581         char            *home_terminfo;
582 #endif
583
584 #if !USE_SAFE_SPRINTF
585         int             safeprint_cols;
586         int             safeprint_rows;
587 #endif
588
589 #ifdef TRACE
590         bool            init_trace;
591         char            trace_fname[PATH_MAX];
592         int             trace_level;
593         FILE            *trace_fp;
594
595         char            *tracearg_buf;
596         size_t          tracearg_used;
597
598         TRACEBUF        *tracebuf_ptr;
599         size_t          tracebuf_used;
600
601         char            tracechr_buf[40];
602
603         char            *tracedmp_buf;
604         size_t          tracedmp_used;
605
606         char            tracemse_buf[TRACEMSE_MAX];
607
608         unsigned char   *tracetry_buf;
609         size_t          tracetry_used;
610
611         char            traceatr_color_buf[2][80];
612         int             traceatr_color_sel;
613         int             traceatr_color_last;
614
615 #endif  /* TRACE */
616
617 #ifdef USE_PTHREADS
618        pthread_mutex_t  mutex_set_SP;
619        pthread_mutex_t  mutex_use_screen;
620        pthread_mutex_t  mutex_use_window;
621        pthread_mutex_t  mutex_windowlist;
622        pthread_mutex_t  mutex_tst_tracef;
623        pthread_mutex_t  mutex_tracef;
624        int              nested_tracef;
625 #endif
626 } NCURSES_GLOBALS;
627
628 extern NCURSES_EXPORT_VAR(NCURSES_GLOBALS) _nc_globals;
629
630 #define N_RIPS 5
631
632 /*
633  * Global data which can be swept up into a SCREEN when one is created.
634  * It may be modified before the next SCREEN is created.
635  */
636 typedef struct {
637         bool            use_env;
638         bool            filter_mode;
639         attr_t          previous_attr;
640         ripoff_t        rippedoff[N_RIPS];
641         ripoff_t        *rsp;
642         TPARM_STATE     tparm_state;
643         TTY             *saved_tty;     /* savetty/resetty information      */
644 #if BROKEN_LINKER || USE_REENTRANT
645         chtype          *real_acs_map;
646         int             _LINES;
647         int             _COLS;
648         TERMINAL        *_cur_term;
649 #ifdef TRACE
650         long            _outchars;
651         const char      *_tputs_trace;
652 #endif
653 #endif
654 } NCURSES_PRESCREEN;
655
656 #define ripoff_sp       _nc_prescreen.rsp
657 #define ripoff_stack    _nc_prescreen.rippedoff
658
659 extern NCURSES_EXPORT_VAR(NCURSES_PRESCREEN) _nc_prescreen;
660
661 /*
662  * The SCREEN structure.
663  */
664
665 struct screen {
666         int             _ifd;           /* input file ptr for screen        */
667         FILE            *_ofp;          /* output file ptr for screen       */
668         char            *_setbuf;       /* buffered I/O for output          */
669         bool            _filtered;      /* filter() was called              */
670         bool            _buffered;      /* setvbuf uses _setbuf data        */
671         int             _checkfd;       /* filedesc for typeahead check     */
672         TERMINAL        *_term;         /* terminal type information        */
673         TTY             _saved_tty;     /* savetty/resetty information      */
674         NCURSES_SIZE_T  _lines;         /* screen lines                     */
675         NCURSES_SIZE_T  _columns;       /* screen columns                   */
676
677         NCURSES_SIZE_T  _lines_avail;   /* lines available for stdscr       */
678         NCURSES_SIZE_T  _topstolen;     /* lines stolen from top            */
679
680         WINDOW          *_curscr;       /* current screen                   */
681         WINDOW          *_newscr;       /* virtual screen to be updated to  */
682         WINDOW          *_stdscr;       /* screen's full-window context     */
683
684         TRIES           *_keytry;       /* "Try" for use with keypad mode   */
685         TRIES           *_key_ok;       /* Disabled keys via keyok(,FALSE)  */
686         bool            _tried;         /* keypad mode was initialized      */
687         bool            _keypad_on;     /* keypad mode is currently on      */
688
689         bool            _called_wgetch; /* check for recursion in wgetch()  */
690         int             _fifo[FIFO_SIZE];       /* input push-back buffer   */
691         short           _fifohead,      /* head of fifo queue               */
692                         _fifotail,      /* tail of fifo queue               */
693                         _fifopeek,      /* where to peek for next char      */
694                         _fifohold;      /* set if breakout marked           */
695
696         int             _endwin;        /* are we out of window mode?       */
697         NCURSES_CH_T    *_current_attr; /* holds current attributes set     */
698         int             _coloron;       /* is color enabled?                */
699         int             _color_defs;    /* are colors modified              */
700         int             _cursor;        /* visibility of the cursor         */
701         int             _cursrow;       /* physical cursor row              */
702         int             _curscol;       /* physical cursor column           */
703         bool            _notty;         /* true if we cannot switch non-tty */
704         int             _nl;            /* True if NL -> CR/NL is on        */
705         int             _raw;           /* True if in raw mode              */
706         int             _cbreak;        /* 1 if in cbreak mode              */
707                                         /* > 1 if in halfdelay mode         */
708         int             _echo;          /* True if echo on                  */
709         int             _use_meta;      /* use the meta key?                */
710         struct _SLK     *_slk;          /* ptr to soft key struct / NULL    */
711         int             slk_format;     /* selected format for this screen  */
712         /* cursor movement costs; units are 10ths of milliseconds */
713 #if NCURSES_NO_PADDING
714         int             _no_padding;    /* flag to set if padding disabled  */
715 #endif
716         int             _char_padding;  /* cost of character put            */
717         int             _cr_cost;       /* cost of (carriage_return)        */
718         int             _cup_cost;      /* cost of (cursor_address)         */
719         int             _home_cost;     /* cost of (cursor_home)            */
720         int             _ll_cost;       /* cost of (cursor_to_ll)           */
721 #if USE_HARD_TABS
722         int             _ht_cost;       /* cost of (tab)                    */
723         int             _cbt_cost;      /* cost of (backtab)                */
724 #endif /* USE_HARD_TABS */
725         int             _cub1_cost;     /* cost of (cursor_left)            */
726         int             _cuf1_cost;     /* cost of (cursor_right)           */
727         int             _cud1_cost;     /* cost of (cursor_down)            */
728         int             _cuu1_cost;     /* cost of (cursor_up)              */
729         int             _cub_cost;      /* cost of (parm_cursor_left)       */
730         int             _cuf_cost;      /* cost of (parm_cursor_right)      */
731         int             _cud_cost;      /* cost of (parm_cursor_down)       */
732         int             _cuu_cost;      /* cost of (parm_cursor_up)         */
733         int             _hpa_cost;      /* cost of (column_address)         */
734         int             _vpa_cost;      /* cost of (row_address)            */
735         /* used in tty_update.c, must be chars */
736         int             _ed_cost;       /* cost of (clr_eos)                */
737         int             _el_cost;       /* cost of (clr_eol)                */
738         int             _el1_cost;      /* cost of (clr_bol)                */
739         int             _dch1_cost;     /* cost of (delete_character)       */
740         int             _ich1_cost;     /* cost of (insert_character)       */
741         int             _dch_cost;      /* cost of (parm_dch)               */
742         int             _ich_cost;      /* cost of (parm_ich)               */
743         int             _ech_cost;      /* cost of (erase_chars)            */
744         int             _rep_cost;      /* cost of (repeat_char)            */
745         int             _hpa_ch_cost;   /* cost of (column_address)         */
746         int             _cup_ch_cost;   /* cost of (cursor_address)         */
747         int             _cuf_ch_cost;   /* cost of (parm_cursor_right)      */
748         int             _inline_cost;   /* cost of inline-move              */
749         int             _smir_cost;     /* cost of (enter_insert_mode)      */
750         int             _rmir_cost;     /* cost of (exit_insert_mode)       */
751         int             _ip_cost;       /* cost of (insert_padding)         */
752         /* used in lib_mvcur.c */
753         char *          _address_cursor;
754         /* used in tty_update.c */
755         int             _scrolling;     /* 1 if terminal's smart enough to  */
756
757         /* used in lib_color.c */
758         color_t         *_color_table;  /* screen's color palette            */
759         int             _color_count;   /* count of colors in palette        */
760         colorpair_t     *_color_pairs;  /* screen's color pair list          */
761         int             _pair_count;    /* count of color pairs              */
762 #if NCURSES_EXT_FUNCS
763         bool            _default_color; /* use default colors                */
764         bool            _has_sgr_39_49; /* has ECMA default color support    */
765         int             _default_fg;    /* assumed default foreground        */
766         int             _default_bg;    /* assumed default background        */
767 #endif
768         chtype          _ok_attributes; /* valid attributes for terminal     */
769         chtype          _xmc_suppress;  /* attributes to suppress if xmc     */
770         chtype          _xmc_triggers;  /* attributes to process if xmc      */
771         chtype *        _acs_map;       /* the real alternate-charset map    */
772         bool *          _screen_acs_map;
773
774
775         /* used in lib_vidattr.c */
776         bool            _use_rmso;      /* true if we may use 'rmso'         */
777         bool            _use_rmul;      /* true if we may use 'rmul'         */
778
779         /*
780          * These data correspond to the state of the idcok() and idlok()
781          * functions.  A caveat is in order here:  the XSI and SVr4
782          * documentation specify that these functions apply to the window which
783          * is given as an argument.  However, ncurses implements this logic
784          * only for the newscr/curscr update process, _not_ per-window.
785          */
786         bool            _nc_sp_idlok;
787         bool            _nc_sp_idcok;
788 #define _nc_idlok SP->_nc_sp_idlok
789 #define _nc_idcok SP->_nc_sp_idcok
790
791         /*
792          * These are the data that support the mouse interface.
793          */
794         bool            _mouse_initialized;
795         MouseType       _mouse_type;
796         int             _maxclick;
797         bool            (*_mouse_event) (SCREEN *);
798         bool            (*_mouse_inline)(SCREEN *);
799         bool            (*_mouse_parse) (int);
800         void            (*_mouse_resume)(SCREEN *);
801         void            (*_mouse_wrap)  (SCREEN *);
802         int             _mouse_fd;      /* file-descriptor, if any */
803         bool            _mouse_active;  /* true if initialized */
804         mmask_t         _mouse_mask;
805         NCURSES_CONST char *_mouse_xtermcap; /* string to enable/disable mouse */
806         MEVENT          _mouse_events[EV_MAX];  /* hold the last mouse event seen */
807         MEVENT          *_mouse_eventp; /* next free slot in event queue */
808
809 #if USE_GPM_SUPPORT
810         bool            _mouse_gpm_loaded;
811         bool            _mouse_gpm_found;
812 #ifdef HAVE_LIBDL
813         TYPE_gpm_fd     _mouse_gpm_fd;
814         TYPE_Gpm_Open   _mouse_Gpm_Open;
815         TYPE_Gpm_Close  _mouse_Gpm_Close;
816         TYPE_Gpm_GetEvent _mouse_Gpm_GetEvent;
817 #endif
818         Gpm_Connect     _mouse_gpm_connect;
819 #endif /* USE_GPM_SUPPORT */
820
821 #if USE_EMX_MOUSE
822         int             _emxmouse_wfd;
823         int             _emxmouse_thread;
824         int             _emxmouse_activated;
825         char            _emxmouse_buttons[4];
826 #endif
827
828 #if USE_SYSMOUSE
829         MEVENT          _sysmouse_fifo[FIFO_SIZE];
830         int             _sysmouse_head;
831         int             _sysmouse_tail;
832         int             _sysmouse_char_width;   /* character width */
833         int             _sysmouse_char_height;  /* character height */
834         int             _sysmouse_old_buttons;
835         int             _sysmouse_new_buttons;
836 #endif
837
838         /*
839          * This supports automatic resizing
840          */
841 #if USE_SIZECHANGE
842         int             (*_resize)(int,int);
843 #endif
844
845         /*
846          * These are data that support the proper handling of the panel stack on an
847          * per screen basis.
848          */
849         struct panelhook _panelHook;
850
851         bool            _sig_winch;
852         SCREEN          *_next_screen;
853
854         /* hashes for old and new lines */
855         unsigned long   *oldhash, *newhash;
856         HASHMAP         *hashtab;
857         int             hashtab_len;
858         int             *_oldnum_list;
859         int             _oldnum_size;
860
861         bool            _cleanup;       /* cleanup after int/quit signal */
862         int             (*_outch)(int); /* output handler if not putc */
863
864         int             _legacy_coding; /* see use_legacy_coding() */
865
866 #if USE_REENTRANT
867         char            _ttytype[NAMESIZE];
868         int             _ESCDELAY;
869         int             _TABSIZE;
870         int             _LINES;
871         int             _COLS;
872 #ifdef TRACE
873         long            _outchars;
874         const char      *_tputs_trace;
875 #endif
876 #endif
877         /*
878          * ncurses/ncursesw are the same up to this point.
879          */
880 #if USE_WIDEC_SUPPORT
881         /* recent versions of 'screen' have partially-working support for
882          * UTF-8, but do not permit ACS at the same time (see tty_update.c).
883          */
884         bool            _screen_acs_fix;
885 #endif
886 };
887
888 extern NCURSES_EXPORT_VAR(SCREEN *) _nc_screen_chain;
889 extern NCURSES_EXPORT_VAR(SIG_ATOMIC_T) _nc_have_sigwinch;
890
891         WINDOWLIST {
892         WINDOW  win;    /* first, so WINDOW_EXT() works */
893         WINDOWLIST *next;
894 #ifdef _XOPEN_SOURCE_EXTENDED
895         char addch_work[(MB_LEN_MAX * 9) + 1];
896         unsigned addch_used;    /* number of bytes in addch_work[] */
897         int addch_x;            /* x-position for addch_work[] */
898         int addch_y;            /* y-position for addch_work[] */
899 #endif
900 #ifdef USE_PTHREADS
901         pthread_mutex_t mutex_use_window;
902 #endif
903 };
904
905 #define WINDOW_EXT(win,field) (((WINDOWLIST *)(win))->field)
906
907 /* usually in <limits.h> */
908 #ifndef UCHAR_MAX
909 #define UCHAR_MAX 255
910 #endif
911
912 /* The terminfo source is assumed to be 7-bit ASCII */
913 #define is7bits(c)      ((unsigned)(c) < 128)
914
915 /* Checks for isprint() should be done on 8-bit characters (non-wide) */
916 #define is8bits(c)      ((unsigned)(c) <= UCHAR_MAX)
917
918 #ifndef min
919 #define min(a,b)        ((a) > (b)  ?  (b)  :  (a))
920 #endif
921
922 #ifndef max
923 #define max(a,b)        ((a) < (b)  ?  (b)  :  (a))
924 #endif
925
926 /* usually in <unistd.h> */
927 #ifndef STDIN_FILENO
928 #define STDIN_FILENO 0
929 #endif
930
931 #ifndef STDOUT_FILENO
932 #define STDOUT_FILENO 1
933 #endif
934
935 #ifndef STDERR_FILENO
936 #define STDERR_FILENO 2
937 #endif
938
939 #ifndef EXIT_SUCCESS
940 #define EXIT_SUCCESS 0
941 #endif
942
943 #ifndef EXIT_FAILURE
944 #define EXIT_FAILURE 1
945 #endif
946
947 #ifndef R_OK
948 #define R_OK    4               /* Test for read permission.  */
949 #endif
950 #ifndef W_OK
951 #define W_OK    2               /* Test for write permission.  */
952 #endif
953 #ifndef X_OK
954 #define X_OK    1               /* Test for execute permission.  */
955 #endif
956 #ifndef F_OK
957 #define F_OK    0               /* Test for existence.  */
958 #endif
959
960 #if HAVE_FCNTL_H
961 #include <fcntl.h>              /* may define O_BINARY  */
962 #endif
963
964 #ifndef O_BINARY
965 #define O_BINARY 0
966 #endif
967
968 #ifdef TRACE
969 #if USE_REENTRANT
970 #define COUNT_OUTCHARS(n) _nc_count_outchars(n);
971 #else
972 #define COUNT_OUTCHARS(n) _nc_outchars += (n);
973 #endif
974 #else
975 #define COUNT_OUTCHARS(n) /* nothing */
976 #endif
977
978 #define RESET_OUTCHARS() COUNT_OUTCHARS(-_nc_outchars)
979
980 #define UChar(c)        ((unsigned char)(c))
981 #define ChCharOf(c)     ((c) & (chtype)A_CHARTEXT)
982 #define ChAttrOf(c)     ((c) & (chtype)A_ATTRIBUTES)
983
984 #ifndef MB_LEN_MAX
985 #define MB_LEN_MAX 8 /* should be >= MB_CUR_MAX, but that may be a function */
986 #endif
987
988 #if USE_WIDEC_SUPPORT /* { */
989 #define isEILSEQ(status) (((size_t)status == (size_t)-1) && (errno == EILSEQ))
990
991 #define init_mb(state)  memset(&state, 0, sizeof(state))
992
993 #if NCURSES_EXT_COLORS
994 #define NulColor        , 0
995 #else
996 #define NulColor        /* nothing */
997 #endif
998
999 #define NulChar         0,0,0,0 /* FIXME: see CCHARW_MAX */
1000 #define CharOf(c)       ((c).chars[0])
1001 #define AttrOf(c)       ((c).attr)
1002
1003 #define AddAttr(c,a)    AttrOf(c) |=  ((a) & A_ATTRIBUTES)
1004 #define RemAttr(c,a)    AttrOf(c) &= ~((a) & A_ATTRIBUTES)
1005 #define SetAttr(c,a)    AttrOf(c) =   ((a) & A_ATTRIBUTES) | WidecExt(c)
1006
1007 #define NewChar2(c,a)   { a, { c, NulChar } NulColor }
1008 #define NewChar(ch)     NewChar2(ChCharOf(ch), ChAttrOf(ch))
1009
1010 #if CCHARW_MAX == 5
1011 #define CharEq(a,b)     (((a).attr == (b).attr) \
1012                        && (a).chars[0] == (b).chars[0] \
1013                        && (a).chars[1] == (b).chars[1] \
1014                        && (a).chars[2] == (b).chars[2] \
1015                        && (a).chars[3] == (b).chars[3] \
1016                        && (a).chars[4] == (b).chars[4] \
1017                         if_EXT_COLORS(&& (a).ext_color == (b).ext_color))
1018 #else
1019 #define CharEq(a,b)     (!memcmp(&(a), &(b), sizeof(a)))
1020 #endif
1021
1022 #define SetChar(ch,c,a) do {                                                        \
1023                             NCURSES_CH_T *_cp = &ch;                                \
1024                             memset(_cp, 0, sizeof(ch));                             \
1025                             _cp->chars[0] = (c);                                            \
1026                             _cp->attr = (a);                                        \
1027                             if_EXT_COLORS(SetPair(ch, PAIR_NUMBER(a)));             \
1028                         } while (0)
1029 #define CHREF(wch)      (&wch)
1030 #define CHDEREF(wch)    (*wch)
1031 #define ARG_CH_T        NCURSES_CH_T *
1032 #define CARG_CH_T       const NCURSES_CH_T *
1033 #define PUTC_DATA       char PUTC_buf[MB_LEN_MAX]; int PUTC_i, PUTC_n; \
1034                         mbstate_t PUT_st; wchar_t PUTC_ch
1035 #define PUTC_INIT       init_mb (PUT_st)
1036 #define PUTC(ch,b)      do { if(!isWidecExt(ch)) {                                  \
1037                         if (Charable(ch)) {                                         \
1038                             fputc(CharOf(ch), b);                                   \
1039                             COUNT_OUTCHARS(1);                                      \
1040                         } else {                                                    \
1041                             PUTC_INIT;                                              \
1042                             for (PUTC_i = 0; PUTC_i < CCHARW_MAX; ++PUTC_i) {       \
1043                                 PUTC_ch = (ch).chars[PUTC_i];                       \
1044                                 if (PUTC_ch == L'\0')                               \
1045                                     break;                                          \
1046                                 PUTC_n = wcrtomb(PUTC_buf,                          \
1047                                                  (ch).chars[PUTC_i], &PUT_st);      \
1048                                 if (PUTC_n <= 0) {                                  \
1049                                     if (PUTC_ch && is8bits(PUTC_ch) && PUTC_i == 0) \
1050                                         putc(PUTC_ch,b);                            \
1051                                     break;                                          \
1052                                 }                                                   \
1053                                 fwrite(PUTC_buf, (unsigned) PUTC_n, 1, b);          \
1054                             }                                                       \
1055                             COUNT_OUTCHARS(PUTC_i);                                 \
1056                         } } } while (0)
1057
1058 #define BLANK           NewChar2(' ', WA_NORMAL)
1059 #define ZEROS           NewChar2('\0', WA_NORMAL)
1060 #define ISBLANK(ch)     ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0')
1061
1062         /*
1063          * Wide characters cannot be represented in the A_CHARTEXT mask of
1064          * attr_t's but an application might have set a narrow character there.
1065          * But even in that case, it would only be a printable character, or
1066          * zero.  Otherwise we can use those bits to tell if a cell is the
1067          * first or extension part of a wide character.
1068          */
1069 #define WidecExt(ch)    (AttrOf(ch) & A_CHARTEXT)
1070 #define isWidecBase(ch) (WidecExt(ch) == 1)
1071 #define isWidecExt(ch)  (WidecExt(ch) > 1 && WidecExt(ch) < 32)
1072 #define SetWidecExt(dst, ext)   AttrOf(dst) &= ~A_CHARTEXT,             \
1073                                 AttrOf(dst) |= (ext + 1)
1074
1075 #define if_WIDEC(code)  code
1076 #define Charable(ch)    ((SP != 0 && SP->_legacy_coding)                \
1077                          || (AttrOf(ch) & A_ALTCHARSET)                 \
1078                          || (!isWidecExt(ch) &&                         \
1079                              (ch).chars[1] == L'\0' &&                  \
1080                              _nc_is_charable(CharOf(ch))))
1081
1082 #define L(ch)           L ## ch
1083 #else /* }{ */
1084 #define CharOf(c)       ChCharOf(c)
1085 #define AttrOf(c)       ChAttrOf(c)
1086 #define AddAttr(c,a)    c |= (a)
1087 #define RemAttr(c,a)    c &= ~((a) & A_ATTRIBUTES)
1088 #define SetAttr(c,a)    c = ((c) & ~A_ATTRIBUTES) | (a)
1089 #define NewChar(ch)     (ch)
1090 #define NewChar2(c,a)   ((c) | (a))
1091 #define CharEq(a,b)     ((a) == (b))
1092 #define SetChar(ch,c,a) ch = (c) | (a)
1093 #define CHREF(wch)      wch
1094 #define CHDEREF(wch)    wch
1095 #define ARG_CH_T        NCURSES_CH_T
1096 #define CARG_CH_T       NCURSES_CH_T
1097 #define PUTC_DATA       int data = 0
1098 #define PUTC(ch,b)      do { data = CharOf(ch); putc(data,b); } while (0)
1099
1100 #define BLANK           (' '|A_NORMAL)
1101 #define ZEROS           ('\0'|A_NORMAL)
1102 #define ISBLANK(ch)     (CharOf(ch) == ' ')
1103
1104 #define isWidecExt(ch)  (0)
1105 #define if_WIDEC(code) /* nothing */
1106
1107 #define L(ch)           ch
1108 #endif /* } */
1109
1110 #define AttrOfD(ch)     AttrOf(CHDEREF(ch))
1111 #define CharOfD(ch)     CharOf(CHDEREF(ch))
1112 #define SetChar2(wch,ch)    SetChar(wch,ChCharOf(ch),ChAttrOf(ch))
1113
1114 #define BLANK_ATTR      A_NORMAL
1115 #define BLANK_TEXT      L(' ')
1116
1117 #define CHANGED     -1
1118
1119 #define LEGALYX(w, y, x) \
1120               ((w) != 0 && \
1121                 ((x) >= 0 && (x) <= (w)->_maxx && \
1122                  (y) >= 0 && (y) <= (w)->_maxy))
1123
1124 #define CHANGED_CELL(line,col) \
1125         if (line->firstchar == _NOCHANGE) \
1126                 line->firstchar = line->lastchar = col; \
1127         else if ((col) < line->firstchar) \
1128                 line->firstchar = col; \
1129         else if ((col) > line->lastchar) \
1130                 line->lastchar = col
1131
1132 #define CHANGED_RANGE(line,start,end) \
1133         if (line->firstchar == _NOCHANGE \
1134          || line->firstchar > (start)) \
1135                 line->firstchar = start; \
1136         if (line->lastchar == _NOCHANGE \
1137          || line->lastchar < (end)) \
1138                 line->lastchar = end
1139
1140 #define CHANGED_TO_EOL(line,start,end) \
1141         if (line->firstchar == _NOCHANGE \
1142          || line->firstchar > (start)) \
1143                 line->firstchar = start; \
1144         line->lastchar = end
1145
1146 #define SIZEOF(v) (sizeof(v)/sizeof(v[0]))
1147
1148 #define FreeIfNeeded(p)  if ((p) != 0) free(p)
1149
1150 /* FreeAndNull() is not a comma-separated expression because some compilers
1151  * do not accept a mixture of void with values.
1152  */
1153 #define FreeAndNull(p)   free(p); p = 0
1154
1155 #include <nc_alloc.h>
1156
1157 /*
1158  * TTY bit definition for converting tabs to spaces.
1159  */
1160 #ifdef TAB3
1161 # define OFLAGS_TABS TAB3       /* POSIX specifies TAB3 */
1162 #else
1163 # ifdef XTABS
1164 #  define OFLAGS_TABS XTABS     /* XTABS is usually the "same" */
1165 # else
1166 #  ifdef OXTABS
1167 #   define OFLAGS_TABS OXTABS   /* the traditional BSD equivalent */
1168 #  else
1169 #   define OFLAGS_TABS 0
1170 #  endif
1171 # endif
1172 #endif
1173
1174 /*
1175  * Standardize/simplify common loops
1176  */
1177 #define each_screen(p) p = _nc_screen_chain; p != 0; p = (p)->_next_screen
1178 #define each_window(p) p = _nc_windows; p != 0; p = (p)->next
1179 #define each_ripoff(p) p = ripoff_stack; (p - ripoff_stack) < N_RIPS; ++p
1180
1181 /*
1182  * Prefixes for call/return points of library function traces.  We use these to
1183  * instrument the public functions so that the traces can be easily transformed
1184  * into regression scripts.
1185  */
1186 #define T_CALLED(fmt) "called {" fmt
1187 #define T_CREATE(fmt) "create :" fmt
1188 #define T_RETURN(fmt) "return }" fmt
1189
1190 #ifdef TRACE
1191
1192 #if USE_REENTRANT
1193 #define TPUTS_TRACE(s)  _nc_set_tputs_trace(s);
1194 #else
1195 #define TPUTS_TRACE(s)  _nc_tputs_trace = s;
1196 #endif
1197
1198 #define START_TRACE() \
1199         if ((_nc_tracing & TRACE_MAXIMUM) == 0) { \
1200             int t = _nc_getenv_num("NCURSES_TRACE"); \
1201             if (t >= 0) \
1202                 trace((unsigned) t); \
1203         }
1204
1205 /*
1206  * Many of the _tracef() calls use static buffers; lock the trace state before
1207  * trying to fill them.
1208  */
1209 #if USE_REENTRANT
1210 #define USE_TRACEF(mask) _nc_use_tracef(mask)
1211 extern NCURSES_EXPORT(int)      _nc_use_tracef (unsigned);
1212 extern NCURSES_EXPORT(void)     _nc_locked_tracef (const char *, ...) GCC_PRINTFLIKE(1,2);
1213 #else
1214 #define USE_TRACEF(mask) (_nc_tracing & (mask))
1215 #define _nc_locked_tracef _tracef
1216 #endif
1217
1218 #define TR(n, a)        if (USE_TRACEF(n)) _nc_locked_tracef a
1219 #define T(a)            TR(TRACE_CALLS, a)
1220 #define TRACE_RETURN(value,type) return _nc_retrace_##type(value)
1221
1222 #define returnAttr(code)        TRACE_RETURN(code,attr_t)
1223 #define returnBits(code)        TRACE_RETURN(code,unsigned)
1224 #define returnBool(code)        TRACE_RETURN(code,bool)
1225 #define returnCPtr(code)        TRACE_RETURN(code,cptr)
1226 #define returnCVoidPtr(code)    TRACE_RETURN(code,cvoid_ptr)
1227 #define returnChar(code)        TRACE_RETURN(code,chtype)
1228 #define returnCode(code)        TRACE_RETURN(code,int)
1229 #define returnPtr(code)         TRACE_RETURN(code,ptr)
1230 #define returnSP(code)          TRACE_RETURN(code,sp)
1231 #define returnVoid              T((T_RETURN(""))); return
1232 #define returnVoidPtr(code)     TRACE_RETURN(code,void_ptr)
1233 #define returnWin(code)         TRACE_RETURN(code,win)
1234
1235 extern NCURSES_EXPORT(NCURSES_BOOL)     _nc_retrace_bool (NCURSES_BOOL);
1236 extern NCURSES_EXPORT(NCURSES_CONST void *) _nc_retrace_cvoid_ptr (NCURSES_CONST void *);
1237 extern NCURSES_EXPORT(SCREEN *)         _nc_retrace_sp (SCREEN *);
1238 extern NCURSES_EXPORT(WINDOW *)         _nc_retrace_win (WINDOW *);
1239 extern NCURSES_EXPORT(attr_t)           _nc_retrace_attr_t (attr_t);
1240 extern NCURSES_EXPORT(char *)           _nc_retrace_ptr (char *);
1241 extern NCURSES_EXPORT(char *)           _nc_trace_ttymode(TTY *tty);
1242 extern NCURSES_EXPORT(char *)           _nc_varargs (const char *, va_list);
1243 extern NCURSES_EXPORT(chtype)           _nc_retrace_chtype (chtype);
1244 extern NCURSES_EXPORT(const char *)     _nc_altcharset_name(attr_t, chtype);
1245 extern NCURSES_EXPORT(const char *)     _nc_retrace_cptr (const char *);
1246 extern NCURSES_EXPORT(int)              _nc_retrace_int (int);
1247 extern NCURSES_EXPORT(unsigned)         _nc_retrace_unsigned (unsigned);
1248 extern NCURSES_EXPORT(void *)           _nc_retrace_void_ptr (void *);
1249 extern NCURSES_EXPORT(void)             _nc_fifo_dump (SCREEN *);
1250
1251 #if USE_REENTRANT
1252 NCURSES_WRAPPED_VAR(long, _nc_outchars);
1253 NCURSES_WRAPPED_VAR(const char *, _nc_tputs_trace);
1254 #define _nc_outchars       NCURSES_PUBLIC_VAR(_nc_outchars())
1255 #define _nc_tputs_trace    NCURSES_PUBLIC_VAR(_nc_tputs_trace())
1256 extern NCURSES_EXPORT(void)             _nc_set_tputs_trace (const char *);
1257 extern NCURSES_EXPORT(void)             _nc_count_outchars (long);
1258 #else
1259 extern NCURSES_EXPORT_VAR(const char *) _nc_tputs_trace;
1260 extern NCURSES_EXPORT_VAR(long)         _nc_outchars;
1261 #endif
1262
1263 extern NCURSES_EXPORT_VAR(unsigned)     _nc_tracing;
1264
1265 #if USE_WIDEC_SUPPORT
1266 extern NCURSES_EXPORT(const char *) _nc_viswbuf2 (int, const wchar_t *);
1267 extern NCURSES_EXPORT(const char *) _nc_viswbufn (const wchar_t *, int);
1268 #endif
1269
1270 extern NCURSES_EXPORT(const char *) _nc_viscbuf2 (int, const NCURSES_CH_T *, int);
1271 extern NCURSES_EXPORT(const char *) _nc_viscbuf (const NCURSES_CH_T *, int);
1272
1273 #else /* !TRACE */
1274
1275 #define START_TRACE() /* nothing */
1276
1277 #define T(a)
1278 #define TR(n, a)
1279 #define TPUTS_TRACE(s)
1280
1281 #define returnAttr(code)        return code
1282 #define returnBits(code)        return code
1283 #define returnBool(code)        return code
1284 #define returnCPtr(code)        return code
1285 #define returnCVoidPtr(code)    return code
1286 #define returnChar(code)        return code
1287 #define returnCode(code)        return code
1288 #define returnPtr(code)         return code
1289 #define returnSP(code)          return code
1290 #define returnVoid              return
1291 #define returnVoidPtr(code)     return code
1292 #define returnWin(code)         return code
1293
1294 #endif /* TRACE/!TRACE */
1295
1296 /*
1297  * Return-codes for tgetent() and friends.
1298  */
1299 #define TGETENT_YES  1          /* entry is found */
1300 #define TGETENT_NO   0          /* entry is not found */
1301 #define TGETENT_ERR -1          /* an error occurred */
1302
1303 extern NCURSES_EXPORT(const char *) _nc_visbuf2 (int, const char *);
1304 extern NCURSES_EXPORT(const char *) _nc_visbufn (const char *, int);
1305
1306 #define empty_module(name) \
1307 extern  NCURSES_EXPORT(void) name (void); \
1308         NCURSES_EXPORT(void) name (void) { }
1309
1310 #define ALL_BUT_COLOR ((chtype)~(A_COLOR))
1311 #define NONBLANK_ATTR (A_NORMAL|A_BOLD|A_DIM|A_BLINK)
1312 #define XMC_CHANGES(c) ((c) & SP->_xmc_suppress)
1313
1314 #define toggle_attr_on(S,at) {\
1315    if (PAIR_NUMBER(at) > 0) {\
1316       (S) = ((S) & ALL_BUT_COLOR) | (at);\
1317    } else {\
1318       (S) |= (at);\
1319    }\
1320    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1321
1322
1323 #define toggle_attr_off(S,at) {\
1324    if (PAIR_NUMBER(at) > 0) {\
1325       (S) &= ~(at|A_COLOR);\
1326    } else {\
1327       (S) &= ~(at);\
1328    }\
1329    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1330
1331 #define DelCharCost(count) \
1332                 ((parm_dch != 0) \
1333                 ? SP->_dch_cost \
1334                 : ((delete_character != 0) \
1335                         ? (SP->_dch1_cost * count) \
1336                         : INFINITY))
1337
1338 #define InsCharCost(count) \
1339                 ((parm_ich != 0) \
1340                 ? SP->_ich_cost \
1341                 : ((enter_insert_mode && exit_insert_mode) \
1342                   ? SP->_smir_cost + SP->_rmir_cost + (SP->_ip_cost * count) \
1343                   : ((insert_character != 0) \
1344                     ? ((SP->_ich1_cost + SP->_ip_cost) * count) \
1345                     : INFINITY)))
1346
1347 #if USE_XMC_SUPPORT
1348 #define UpdateAttrs(c)  if (!SameAttrOf(SCREEN_ATTRS(SP), c)) { \
1349                                 attr_t chg = AttrOf(SCREEN_ATTRS(SP)); \
1350                                 VIDATTR(AttrOf(c), GetPair(c)); \
1351                                 if (magic_cookie_glitch > 0 \
1352                                  && XMC_CHANGES((chg ^ AttrOf(SCREEN_ATTRS(SP))))) { \
1353                                         T(("%s @%d before glitch %d,%d", \
1354                                                 __FILE__, __LINE__, \
1355                                                 SP->_cursrow, \
1356                                                 SP->_curscol)); \
1357                                         _nc_do_xmc_glitch(chg); \
1358                                 } \
1359                         }
1360 #else
1361 #define UpdateAttrs(c)  if (!SameAttrOf(SCREEN_ATTRS(SP), c)) \
1362                                 VIDATTR(AttrOf(c), GetPair(c));
1363 #endif
1364
1365 /*
1366  * Macros to make additional parameter to implement wgetch_events()
1367  */
1368 #ifdef NCURSES_WGETCH_EVENTS
1369 #define EVENTLIST_0th(param) param
1370 #define EVENTLIST_1st(param) param
1371 #define EVENTLIST_2nd(param) , param
1372 #else
1373 #define EVENTLIST_0th(param) void
1374 #define EVENTLIST_1st(param) /* nothing */
1375 #define EVENTLIST_2nd(param) /* nothing */
1376 #endif
1377
1378 #if NCURSES_EXPANDED && NCURSES_EXT_FUNCS
1379
1380 #undef  toggle_attr_on
1381 #define toggle_attr_on(S,at) _nc_toggle_attr_on(&(S), at)
1382 extern NCURSES_EXPORT(void) _nc_toggle_attr_on (attr_t *, attr_t);
1383
1384 #undef  toggle_attr_off
1385 #define toggle_attr_off(S,at) _nc_toggle_attr_off(&(S), at)
1386 extern NCURSES_EXPORT(void) _nc_toggle_attr_off (attr_t *, attr_t);
1387
1388 #undef  DelCharCost
1389 #define DelCharCost(count) _nc_DelCharCost(count)
1390 extern NCURSES_EXPORT(int) _nc_DelCharCost (int);
1391
1392 #undef  InsCharCost
1393 #define InsCharCost(count) _nc_InsCharCost(count)
1394 extern NCURSES_EXPORT(int) _nc_InsCharCost (int);
1395
1396 #undef  UpdateAttrs
1397 #define UpdateAttrs(c) _nc_UpdateAttrs(c)
1398 extern NCURSES_EXPORT(void) _nc_UpdateAttrs (NCURSES_CH_T);
1399
1400 #else
1401
1402 extern NCURSES_EXPORT(void) _nc_expanded (void);
1403
1404 #endif
1405
1406 #if !HAVE_GETCWD
1407 #define getcwd(buf,len) getwd(buf)
1408 #endif
1409
1410 /* charable.c */
1411 #if USE_WIDEC_SUPPORT
1412 extern NCURSES_EXPORT(bool) _nc_is_charable(wchar_t);
1413 extern NCURSES_EXPORT(int) _nc_to_char(wint_t);
1414 extern NCURSES_EXPORT(wint_t) _nc_to_widechar(int);
1415 #endif
1416
1417 /* comp_captab.c */
1418 typedef struct {
1419         short   nte_name;       /* offset of name to hash on */
1420         int     nte_type;       /* BOOLEAN, NUMBER or STRING */
1421         short   nte_index;      /* index of associated variable in its array */
1422         short   nte_link;       /* index in table of next hash, or -1 */
1423 } name_table_data;
1424
1425 typedef struct
1426 {
1427         short   from;
1428         short   to;
1429         short   source;
1430 } alias_table_data;
1431
1432 /* doupdate.c */
1433 #if USE_XMC_SUPPORT
1434 extern NCURSES_EXPORT(void) _nc_do_xmc_glitch (attr_t);
1435 #endif
1436
1437 /* hardscroll.c */
1438 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
1439 extern NCURSES_EXPORT(void) _nc_linedump (void);
1440 #endif
1441
1442 /* lib_acs.c */
1443 extern NCURSES_EXPORT(void) _nc_init_acs (void);        /* corresponds to traditional 'init_acs()' */
1444 extern NCURSES_EXPORT(int) _nc_msec_cost (const char *const, int);  /* used by 'tack' program */
1445
1446 /* lib_addch.c */
1447 #if USE_WIDEC_SUPPORT
1448 NCURSES_EXPORT(int) _nc_build_wch(WINDOW *win, ARG_CH_T ch);
1449 #endif
1450
1451 /* lib_addstr.c */
1452 #if USE_WIDEC_SUPPORT && !defined(USE_TERMLIB)
1453 extern NCURSES_EXPORT(int) _nc_wchstrlen(const cchar_t *);
1454 #endif
1455
1456 /* lib_color.c */
1457 extern NCURSES_EXPORT(bool) _nc_reset_colors(void);
1458
1459 /* lib_getch.c */
1460 extern NCURSES_EXPORT(int) _nc_wgetch(WINDOW *, unsigned long *, int EVENTLIST_2nd(_nc_eventlist *));
1461
1462 /* lib_insch.c */
1463 extern NCURSES_EXPORT(int) _nc_insert_ch(WINDOW *, chtype);
1464
1465 /* lib_mvcur.c */
1466 #define INFINITY        1000000 /* cost: too high to use */
1467
1468 extern NCURSES_EXPORT(void) _nc_mvcur_init (void);
1469 extern NCURSES_EXPORT(void) _nc_mvcur_resume (void);
1470 extern NCURSES_EXPORT(void) _nc_mvcur_wrap (void);
1471
1472 extern NCURSES_EXPORT(int) _nc_scrolln (int, int, int, int);
1473
1474 extern NCURSES_EXPORT(void) _nc_screen_init (void);
1475 extern NCURSES_EXPORT(void) _nc_screen_resume (void);
1476 extern NCURSES_EXPORT(void) _nc_screen_wrap (void);
1477
1478 /* lib_mouse.c */
1479 extern NCURSES_EXPORT(int) _nc_has_mouse (void);
1480
1481 /* lib_mvcur.c */
1482 #define INFINITY        1000000 /* cost: too high to use */
1483 #define BAUDBYTE        9       /* 9 = 7 bits + 1 parity + 1 stop */
1484
1485 /* lib_setup.c */
1486 extern NCURSES_EXPORT(char *) _nc_get_locale(void);
1487 extern NCURSES_EXPORT(int) _nc_unicode_locale(void);
1488 extern NCURSES_EXPORT(int) _nc_locale_breaks_acs(void);
1489 extern NCURSES_EXPORT(int) _nc_setupterm(NCURSES_CONST char *, int, int *, bool);
1490 extern NCURSES_EXPORT(void) _nc_get_screensize(SCREEN *, int *, int *);
1491
1492 /* lib_tstp.c */
1493 #if USE_SIGWINCH
1494 extern NCURSES_EXPORT(int) _nc_handle_sigwinch(SCREEN *);
1495 #else
1496 #define _nc_handle_sigwinch(a) /* nothing */
1497 #endif
1498
1499 /* lib_ungetch.c */
1500 extern NCURSES_EXPORT(int) _nc_ungetch (SCREEN *, int);
1501
1502 /* lib_wacs.c */
1503 #if USE_WIDEC_SUPPORT
1504 extern NCURSES_EXPORT(void) _nc_init_wacs(void);
1505 #endif
1506
1507 typedef struct {
1508     char *s_head;       /* beginning of the string (may be null) */
1509     char *s_tail;       /* end of the string (may be null) */
1510     size_t s_size;      /* current remaining size available */
1511     size_t s_init;      /* total size available */
1512 } string_desc;
1513
1514 /* strings.c */
1515 extern NCURSES_EXPORT(string_desc *) _nc_str_init (string_desc *, char *, size_t);
1516 extern NCURSES_EXPORT(string_desc *) _nc_str_null (string_desc *, size_t);
1517 extern NCURSES_EXPORT(string_desc *) _nc_str_copy (string_desc *, string_desc *);
1518 extern NCURSES_EXPORT(bool) _nc_safe_strcat (string_desc *, const char *);
1519 extern NCURSES_EXPORT(bool) _nc_safe_strcpy (string_desc *, const char *);
1520
1521 #if !HAVE_STRSTR
1522 #define strstr _nc_strstr
1523 extern NCURSES_EXPORT(char *) _nc_strstr (const char *, const char *);
1524 #endif
1525
1526 /* safe_sprintf.c */
1527 extern NCURSES_EXPORT(char *) _nc_printf_string (const char *, va_list);
1528
1529 /* tries.c */
1530 extern NCURSES_EXPORT(int) _nc_add_to_try (TRIES **, const char *, unsigned);
1531 extern NCURSES_EXPORT(char *) _nc_expand_try (TRIES *, unsigned, int *, size_t);
1532 extern NCURSES_EXPORT(int) _nc_remove_key (TRIES **, unsigned);
1533 extern NCURSES_EXPORT(int) _nc_remove_string (TRIES **, const char *);
1534
1535 /* elsewhere ... */
1536 extern NCURSES_EXPORT(ENTRY *) _nc_delink_entry(ENTRY *, TERMTYPE *);
1537 extern NCURSES_EXPORT(WINDOW *) _nc_makenew (int, int, int, int, int);
1538 extern NCURSES_EXPORT(char *) _nc_trace_buf (int, size_t);
1539 extern NCURSES_EXPORT(char *) _nc_trace_bufcat (int, const char *);
1540 extern NCURSES_EXPORT(int) _nc_access (const char *, int);
1541 extern NCURSES_EXPORT(int) _nc_baudrate (int);
1542 extern NCURSES_EXPORT(int) _nc_freewin (WINDOW *);
1543 extern NCURSES_EXPORT(int) _nc_getenv_num (const char *);
1544 extern NCURSES_EXPORT(int) _nc_keypad (SCREEN *, bool);
1545 extern NCURSES_EXPORT(int) _nc_ospeed (int);
1546 extern NCURSES_EXPORT(int) _nc_outch (int);
1547 extern NCURSES_EXPORT(int) _nc_read_termcap_entry (const char *const, TERMTYPE *const);
1548 extern NCURSES_EXPORT(int) _nc_setupscreen (int, int, FILE *, bool, int);
1549 extern NCURSES_EXPORT(int) _nc_timed_wait(SCREEN *, int, int, int * EVENTLIST_2nd(_nc_eventlist *));
1550 extern NCURSES_EXPORT(void) _nc_do_color (short, short, bool, int (*)(int));
1551 extern NCURSES_EXPORT(void) _nc_flush (void);
1552 extern NCURSES_EXPORT(void) _nc_free_entry(ENTRY *, TERMTYPE *);
1553 extern NCURSES_EXPORT(void) _nc_freeall (void);
1554 extern NCURSES_EXPORT(void) _nc_hash_map (void);
1555 extern NCURSES_EXPORT(void) _nc_init_keytry (SCREEN *);
1556 extern NCURSES_EXPORT(void) _nc_keep_tic_dir (const char *);
1557 extern NCURSES_EXPORT(void) _nc_make_oldhash (int i);
1558 extern NCURSES_EXPORT(void) _nc_scroll_oldhash (int n, int top, int bot);
1559 extern NCURSES_EXPORT(void) _nc_scroll_optimize (void);
1560 extern NCURSES_EXPORT(void) _nc_set_buffer (FILE *, bool);
1561 extern NCURSES_EXPORT(void) _nc_signal_handler (bool);
1562 extern NCURSES_EXPORT(void) _nc_synchook (WINDOW *);
1563 extern NCURSES_EXPORT(void) _nc_trace_tries (TRIES *);
1564
1565 #if NO_LEAKS
1566 extern NCURSES_EXPORT(void) _nc_alloc_entry_leaks(void);
1567 extern NCURSES_EXPORT(void) _nc_captoinfo_leaks(void);
1568 extern NCURSES_EXPORT(void) _nc_codes_leaks(void);
1569 extern NCURSES_EXPORT(void) _nc_comp_captab_leaks(void);
1570 extern NCURSES_EXPORT(void) _nc_comp_scan_leaks(void);
1571 extern NCURSES_EXPORT(void) _nc_keyname_leaks(void);
1572 extern NCURSES_EXPORT(void) _nc_names_leaks(void);
1573 extern NCURSES_EXPORT(void) _nc_tgetent_leaks(void);
1574 #endif
1575
1576 #ifndef USE_TERMLIB
1577 extern NCURSES_EXPORT(NCURSES_CH_T) _nc_render (WINDOW *, NCURSES_CH_T);
1578 extern NCURSES_EXPORT(int) _nc_waddch_nosync (WINDOW *, const NCURSES_CH_T);
1579 extern NCURSES_EXPORT(void) _nc_scroll_window (WINDOW *, int const, NCURSES_SIZE_T const, NCURSES_SIZE_T const, NCURSES_CH_T);
1580 #endif
1581
1582 #if USE_WIDEC_SUPPORT && !defined(USE_TERMLIB)
1583 extern NCURSES_EXPORT(size_t) _nc_wcrtomb (char *, wchar_t, mbstate_t *);
1584 #endif
1585
1586 #if USE_SIZECHANGE
1587 extern NCURSES_EXPORT(void) _nc_update_screensize (SCREEN *);
1588 #endif
1589
1590 #if HAVE_RESIZETERM
1591 extern NCURSES_EXPORT(void) _nc_resize_margins (WINDOW *);
1592 #else
1593 #define _nc_resize_margins(wp) /* nothing */
1594 #endif
1595
1596 #ifdef NCURSES_WGETCH_EVENTS
1597 extern NCURSES_EXPORT(int) _nc_eventlist_timeout(_nc_eventlist *);
1598 #else
1599 #define wgetch_events(win, evl) wgetch(win)
1600 #define wgetnstr_events(win, str, maxlen, evl) wgetnstr(win, str, maxlen)
1601 #endif
1602
1603 /*
1604  * Not everyone has vsscanf(), but we'd like to use it for scanw().
1605  */
1606 #if !HAVE_VSSCANF
1607 extern int vsscanf(const char *str, const char *format, va_list __arg);
1608 #endif
1609
1610 /* scroll indices */
1611 extern NCURSES_EXPORT_VAR(int *) _nc_oldnums;
1612
1613 #define USE_SETBUF_0 0
1614
1615 #define NC_BUFFERED(flag) _nc_set_buffer(SP->_ofp, flag)
1616
1617 #define NC_OUTPUT ((SP != 0) ? SP->_ofp : stdout)
1618
1619 /*
1620  * On systems with a broken linker, define 'SP' as a function to force the
1621  * linker to pull in the data-only module with 'SP'.
1622  */
1623 #if BROKEN_LINKER
1624 #define SP _nc_screen()
1625 extern NCURSES_EXPORT(SCREEN *) _nc_screen (void);
1626 extern NCURSES_EXPORT(int) _nc_alloc_screen (void);
1627 extern NCURSES_EXPORT(void) _nc_set_screen (SCREEN *);
1628 #else
1629 /* current screen is private data; avoid possible linking conflicts too */
1630 extern NCURSES_EXPORT_VAR(SCREEN *) SP;
1631 #define _nc_alloc_screen() ((SP = typeCalloc(SCREEN, 1)) != 0)
1632 #define _nc_set_screen(sp) SP = sp
1633 #endif
1634
1635 /*
1636  * We don't want to use the lines or columns capabilities internally, because
1637  * if the application is running multiple screens under X, it's quite possible
1638  * they could all have type xterm but have different sizes!  So...
1639  */
1640 #define screen_lines    SP->_lines
1641 #define screen_columns  SP->_columns
1642
1643 extern NCURSES_EXPORT(int) _nc_slk_initialize (WINDOW *, int);
1644
1645 /*
1646  * Some constants related to SLK's
1647  */
1648 #define MAX_SKEY_OLD       8    /* count of soft keys */
1649 #define MAX_SKEY_LEN_OLD   8    /* max length of soft key text */
1650 #define MAX_SKEY_PC       12    /* This is what most PC's have */
1651 #define MAX_SKEY_LEN_PC    5
1652
1653 /* Macro to check whether or not we use a standard format */
1654 #define SLK_STDFMT(fmt) (fmt < 3)
1655 /* Macro to determine height of label window */
1656 #define SLK_LINES(fmt)  (SLK_STDFMT(fmt) ? 1 : ((fmt) - 2))
1657
1658 #define MAX_SKEY(fmt)     (SLK_STDFMT(fmt)? MAX_SKEY_OLD : MAX_SKEY_PC)
1659 #define MAX_SKEY_LEN(fmt) (SLK_STDFMT(fmt)? MAX_SKEY_LEN_OLD : MAX_SKEY_LEN_PC)
1660
1661 extern NCURSES_EXPORT(int) _nc_ripoffline (int line, int (*init)(WINDOW *,int));
1662
1663 /*
1664  * Common error messages
1665  */
1666 #define MSG_NO_MEMORY "Out of memory"
1667 #define MSG_NO_INPUTS "Premature EOF"
1668
1669 #ifdef __cplusplus
1670 }
1671 #endif
1672
1673 #endif /* CURSES_PRIV_H */