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