]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/curses.priv.h
ncurses 5.7 - patch 20090530
[ncurses.git] / ncurses / curses.priv.h
1 /****************************************************************************
2  * Copyright (c) 1998-2008,2009 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Thomas E. Dickey                        1996-on                 *
33  *     and: Juergen Pfeifer                                                 *
34  ****************************************************************************/
35
36
37 /*
38  * $Id: curses.priv.h,v 1.420 2009/05/30 15:53:46 tom 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
50 #include <ncurses_dll.h>
51
52 #ifdef __cplusplus
53 extern "C" {
54 #endif
55
56 #include <ncurses_cfg.h>
57
58 #if USE_RCS_IDS
59 #define MODULE_ID(id) static const char Ident[] = id;
60 #else
61 #define MODULE_ID(id) /*nothing*/
62 #endif
63
64 #include <stdlib.h>
65 #include <string.h>
66 #include <sys/types.h>
67
68 #if HAVE_UNISTD_H
69 #include <unistd.h>
70 #endif
71
72 #if HAVE_SYS_BSDTYPES_H
73 #include <sys/bsdtypes.h>       /* needed for ISC */
74 #endif
75
76 #if HAVE_LIMITS_H
77 # include <limits.h>
78 #elif HAVE_SYS_PARAM_H
79 # include <sys/param.h>
80 #endif
81
82 #include <assert.h>
83 #include <stdio.h>
84
85 #include <errno.h>
86
87 #ifndef PATH_MAX
88 # if defined(_POSIX_PATH_MAX)
89 #  define PATH_MAX _POSIX_PATH_MAX
90 # elif defined(MAXPATHLEN)
91 #  define PATH_MAX MAXPATHLEN
92 # else
93 #  define PATH_MAX 255  /* the Posix minimum path-size */
94 # endif
95 #endif
96
97 #if DECL_ERRNO
98 extern int errno;
99 #endif
100
101 /* Some systems have a broken 'select()', but workable 'poll()'.  Use that */
102 #if HAVE_WORKING_POLL
103 #define USE_FUNC_POLL 1
104 #if HAVE_POLL_H
105 #include <poll.h>
106 #else
107 #include <sys/poll.h>
108 #endif
109 #else
110 #define USE_FUNC_POLL 0
111 #endif
112
113 /* include signal.h before curses.h to work-around defect in glibc 2.1.3 */
114 #include <signal.h>
115
116 /* Alessandro Rubini's GPM (general-purpose mouse) */
117 #if HAVE_LIBGPM && HAVE_GPM_H
118 #define USE_GPM_SUPPORT 1
119 #else
120 #define USE_GPM_SUPPORT 0
121 #endif
122
123 /* QNX mouse support */
124 #if defined(__QNX__) && !defined(__QNXNTO__)
125 #define USE_QNX_MOUSE 1
126 #else
127 #define USE_QNX_MOUSE 0
128 #endif
129
130 /* EMX mouse support */
131 #ifdef __EMX__
132 #define USE_EMX_MOUSE 1
133 #else
134 #define USE_EMX_MOUSE 0
135 #endif
136
137 #define DEFAULT_MAXCLICK 166
138 #define EV_MAX          8       /* size of mouse circular event queue */
139
140 /*
141  * If we don't have signals to support it, don't add a sigwinch handler.
142  * In any case, resizing is an extended feature.  Use it if we've got it.
143  */
144 #if !NCURSES_EXT_FUNCS
145 #undef HAVE_SIZECHANGE
146 #define HAVE_SIZECHANGE 0
147 #endif
148
149 #if HAVE_SIZECHANGE && USE_SIGWINCH && defined(SIGWINCH)
150 #define USE_SIZECHANGE 1
151 #else
152 #define USE_SIZECHANGE 0
153 #undef USE_SIGWINCH
154 #define USE_SIGWINCH 0
155 #endif
156
157 /*
158  * If desired, one can configure this, disabling environment variables that
159  * point to custom terminfo/termcap locations.
160  */
161 #ifdef USE_ROOT_ENVIRON
162 #define use_terminfo_vars() 1
163 #else
164 #define use_terminfo_vars() _nc_env_access()
165 extern NCURSES_EXPORT(int) _nc_env_access (void);
166 #endif
167
168 /*
169  * Not all platforms have memmove; some have an equivalent bcopy.  (Some may
170  * have neither).
171  */
172 #if USE_OK_BCOPY
173 #define memmove(d,s,n) bcopy(s,d,n)
174 #elif USE_MY_MEMMOVE
175 #define memmove(d,s,n) _nc_memmove(d,s,n)
176 extern NCURSES_EXPORT(void *) _nc_memmove (void *, const void *, size_t);
177 #endif
178
179 /*
180  * Scroll hints are useless when hashmap is used
181  */
182 #if !USE_SCROLL_HINTS
183 #if !USE_HASHMAP
184 #define USE_SCROLL_HINTS 1
185 #else
186 #define USE_SCROLL_HINTS 0
187 #endif
188 #endif
189
190 #if USE_SCROLL_HINTS
191 #define if_USE_SCROLL_HINTS(stmt) stmt
192 #else
193 #define if_USE_SCROLL_HINTS(stmt) /*nothing*/
194 #endif
195
196 /*
197  * Options for terminal drivers, etc...
198  */
199 #if 0
200 #define USE_SP_RIPOFF     1
201 #define USE_SP_TERMTYPE   1
202 #define USE_SP_WINDOWLIST 1
203 #define USE_TERM_DRIVER   1
204 #endif
205
206 /*
207  * Note:  ht/cbt expansion flakes out randomly under Linux 1.1.47, but only
208  * when we're throwing control codes at the screen at high volume.  To see
209  * this, re-enable USE_HARD_TABS and run worm for a while.  Other systems
210  * probably don't want to define this either due to uncertainties about tab
211  * delays and expansion in raw mode.
212  */
213
214 #define TRIES struct tries
215 typedef TRIES {
216         TRIES    *child;            /* ptr to child.  NULL if none          */
217         TRIES    *sibling;          /* ptr to sibling.  NULL if none        */
218         unsigned char    ch;        /* character at this node               */
219         unsigned short   value;     /* code of string so far.  0 if none.   */
220 #undef TRIES
221 } TRIES;
222
223 /*
224  * Common/troublesome character definitions
225  */
226 #define StringOf(ch) {ch, 0}
227
228 #define L_BRACE '{'
229 #define R_BRACE '}'
230 #define S_QUOTE '\''
231 #define D_QUOTE '"'
232
233 #define VT_ACSC "``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~"
234
235 /*
236  * Structure for palette tables
237  */
238
239 typedef struct
240 {
241     short red, green, blue;     /* what color_content() returns */
242     short r, g, b;              /* params to init_color() */
243     int init;                   /* true if we called init_color() */
244 }
245 color_t;
246
247 #define MAXCOLUMNS    135
248 #define MAXLINES      66
249 #define FIFO_SIZE     MAXCOLUMNS+2  /* for nocbreak mode input */
250
251 #define ACS_LEN       128
252
253 #define WINDOWLIST struct _win_list
254
255 #if USE_WIDEC_SUPPORT
256 #define _nc_bkgd    _bkgrnd
257 #else
258 #undef _XOPEN_SOURCE_EXTENDED
259 #define _nc_bkgd    _bkgd
260 #define wgetbkgrnd(win, wch)    *wch = win->_bkgd
261 #define wbkgrnd     wbkgd
262 #endif
263
264 #undef NCURSES_OPAQUE
265 #define NCURSES_INTERNALS 1
266 #define NCURSES_OPAQUE 0
267
268 #include <curses.h>     /* we'll use -Ipath directive to get the right one! */
269
270 /*
271  * If curses.h did not expose the SCREEN-functions, then we do not need the
272  * parameter in the corresponding unextended functions.
273  */
274 #if NCURSES_SP_FUNCS
275 #define SP_PARM         sp      /* use parameter */
276 #define NCURSES_SP_ARG          SP_PARM
277 #define NCURSES_SP_DCL  SCREEN *NCURSES_SP_ARG
278 #define NCURSES_SP_DCL0 NCURSES_SP_DCL
279 #define NCURSES_SP_ARGx         NCURSES_SP_ARG,
280 #define NCURSES_SP_DCLx SCREEN *NCURSES_SP_ARGx
281 #else
282 #define SP_PARM         SP      /* use global variable */
283 #define NCURSES_SP_ARG
284 #define NCURSES_SP_DCL
285 #define NCURSES_SP_DCL0 void
286 #define NCURSES_SP_ARGx
287 #define NCURSES_SP_DCLx
288 #endif
289
290 #include <nc_panel.h>
291
292 #define IsPreScreen(sp)      (((sp) != 0) && sp->_prescreen)
293 #define HasTerminal(sp)      (((sp) != 0) && (0 != ((sp)->_term)))
294 #define IsValidScreen(sp)    (HasTerminal(sp) && !IsPreScreen(sp))
295
296 #if BROKEN_LINKER || USE_REENTRANT
297 #define CurTerm              _nc_prescreen._cur_term
298 #else
299 #define CurTerm              cur_term
300 #endif
301
302 #if NCURSES_SP_FUNCS
303 #define TerminalOf(sp)       ((sp) ? ((sp)->_term ? (sp)->_term : CurTerm) : CurTerm)
304 #else
305 #define TerminalOf(sp)       CurTerm
306 #endif
307
308 #include <term.h>
309
310 /*
311  * Reduce dependency on cur_term global by using terminfo data from SCREEN's
312  * pointer to this data.
313  */
314 #ifdef USE_SP_TERMTYPE
315 #undef CUR
316 #endif
317
318 #define SP_TERMTYPE TerminalOf(sp)->type.
319
320 #include <term_entry.h>
321
322 #include <nc_tparm.h>
323
324 #if NCURSES_EXT_COLORS && USE_WIDEC_SUPPORT
325 #define if_EXT_COLORS(stmt)     stmt
326 #define NetPair(value,p)        (value).ext_color = (p), \
327                                 AttrOf(value) &= ALL_BUT_COLOR, \
328                                 AttrOf(value) |= (A_COLOR & COLOR_PAIR((p > 255) ? 255 : p))
329 #define SetPair(value,p)        (value).ext_color = (p)
330 #define GetPair(value)          (value).ext_color
331 #define unColor(n)              (AttrOf(n) & ALL_BUT_COLOR)
332 #define GET_WINDOW_PAIR(w)      (w)->_color
333 #define SET_WINDOW_PAIR(w,p)    (w)->_color = (p)
334 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b) && GetPair(a) == GetPair(b))
335
336 #if NCURSES_SP_FUNCS
337 #define VIDATTR(sp,attr,pair)   NCURSES_SP_NAME(vid_attr)(sp, attr, pair, 0)
338 #else
339 #define VIDATTR(sp,attr,pair)   vid_attr(attr, pair, 0)
340 #endif
341
342 #else /* !(NCURSES_EXT_COLORS && USE_WIDEC_SUPPORT) */
343 #define if_EXT_COLORS(stmt)     /* nothing */
344 #define SetPair(value,p)        RemAttr(value, A_COLOR), \
345                                 SetAttr(value, AttrOf(value) | (A_COLOR & COLOR_PAIR(p)))
346 #define GetPair(value)          PAIR_NUMBER(AttrOf(value))
347 #define unColor(n)              (AttrOf(n) & ALL_BUT_COLOR)
348 #define GET_WINDOW_PAIR(w)      PAIR_NUMBER(WINDOW_ATTRS(w))
349 #define SET_WINDOW_PAIR(w,p)    WINDOW_ATTRS(w) &= ALL_BUT_COLOR, \
350                                 WINDOW_ATTRS(w) |= (A_COLOR & COLOR_PAIR(p))
351 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b))
352
353 #if NCURSES_SP_FUNCS
354 #define VIDATTR(sp,attr,pair)   NCURSES_SP_NAME(vidattr)(sp, attr)
355 #else
356 #define VIDATTR(sp,attr,pair)   vidattr(attr)
357 #endif
358
359 #endif /* NCURSES_EXT_COLORS && USE_WIDEC_SUPPORT */
360
361 #if NCURSES_NO_PADDING
362 #define GetNoPadding(sp)        ((sp) ? (sp)->_no_padding : _nc_prescreen._no_padding)
363 #define SetNoPadding(sp)        _nc_set_no_padding(sp)
364 extern NCURSES_EXPORT(void)     _nc_set_no_padding(SCREEN *);
365 #else
366 #define GetNoPadding(sp)        FALSE
367 #define SetNoPadding(sp)        /*nothing*/
368 #endif
369
370 #define WINDOW_ATTRS(w)         ((w)->_attrs)
371
372 #define SCREEN_ATTRS(s)         (*((s)->_current_attr))
373 #define GET_SCREEN_PAIR(s)      GetPair(SCREEN_ATTRS(s))
374 #define SET_SCREEN_PAIR(s,p)    SetPair(SCREEN_ATTRS(s), p)
375
376 #if USE_REENTRANT
377
378 NCURSES_EXPORT(int *)        _nc_ptr_Lines (SCREEN *);
379 NCURSES_EXPORT(int *)        _nc_ptr_Cols (SCREEN *);
380 NCURSES_EXPORT(int *)        _nc_ptr_Tabsize (SCREEN *);
381 NCURSES_EXPORT(int *)        _nc_ptr_Escdelay (SCREEN *);
382
383 #define ptrLines(sp)         (sp ? &(sp->_LINES) : &(_nc_prescreen._LINES))
384 #define ptrCols(sp)          (sp ? &(sp->_COLS) : &(_nc_prescreen._COLS))
385 #define ptrTabsize(sp)       (sp ? &(sp->_TABSIZE) : &(_nc_prescreen._TABSIZE))
386 #define ptrEscdelay(sp)      (sp ? &(sp->_ESCDELAY) : &(_nc_prescreen._ESCDELAY))
387
388 #define SET_LINES(value)     *_nc_ptr_Lines(SP_PARM) = value
389 #define SET_COLS(value)      *_nc_ptr_Cols(SP_PARM) = value
390 #define SET_TABSIZE(value)   *_nc_ptr_Tabsize(SP_PARM) = value
391 #define SET_ESCDELAY(value)  *_nc_ptr_Escdelay(SP_PARM) = value
392
393 #else
394
395 #define ptrLines(sp)         &LINES
396 #define ptrCols(sp)          &COLS
397 #define SET_LINES(value)     LINES = value
398 #define SET_COLS(value)      COLS = value
399 #define SET_TABSIZE(value)   TABSIZE = value
400 #define SET_ESCDELAY(value)  ESCDELAY = value
401
402 #endif
403
404 #define TR_MUTEX(data) _tracef("%s@%d: me:%08lX COUNT:%2u/%2d/%6d/%2d/%s%9u: " #data, \
405             __FILE__, __LINE__, \
406             (unsigned long) (pthread_self()), \
407             data.__data.__lock, \
408             data.__data.__count, \
409             data.__data.__owner, \
410             data.__data.__kind, \
411             (data.__data.__nusers > 5) ? " OOPS " : "", \
412             data.__data.__nusers)
413 #define TR_GLOBAL_MUTEX(name) TR_MUTEX(_nc_globals.mutex_##name)
414
415 #ifdef USE_PTHREADS
416
417 #if USE_REENTRANT
418 #include <pthread.h>
419 extern NCURSES_EXPORT(void) _nc_init_pthreads(void);
420 extern NCURSES_EXPORT(void) _nc_mutex_init(pthread_mutex_t *);
421 extern NCURSES_EXPORT(int) _nc_mutex_lock(pthread_mutex_t *);
422 extern NCURSES_EXPORT(int) _nc_mutex_trylock(pthread_mutex_t *);
423 extern NCURSES_EXPORT(int) _nc_mutex_unlock(pthread_mutex_t *);
424 #define _nc_lock_global(name)   _nc_mutex_lock(&_nc_globals.mutex_##name)
425 #define _nc_try_global(name)    _nc_mutex_trylock(&_nc_globals.mutex_##name)
426 #define _nc_unlock_global(name) _nc_mutex_unlock(&_nc_globals.mutex_##name)
427
428 #else
429 #error POSIX threads requires --enable-reentrant option
430 #endif
431
432 #if USE_WEAK_SYMBOLS
433 #if defined(__GNUC__)
434 #  if defined __USE_ISOC99
435 #    define _cat_pragma(exp)    _Pragma(#exp)
436 #    define _weak_pragma(exp)   _cat_pragma(weak name)
437 #  else
438 #    define _weak_pragma(exp)
439 #  endif
440 #  define _declare(name)        __extension__ extern __typeof__(name) name
441 #  define weak_symbol(name)     _weak_pragma(name) _declare(name) __attribute__((weak))
442 #endif
443 #endif
444
445 #ifdef USE_PTHREADS
446 #  if USE_WEAK_SYMBOLS
447 weak_symbol(pthread_sigmask);
448 weak_symbol(pthread_self);
449 weak_symbol(pthread_equal);
450 weak_symbol(pthread_mutex_init);
451 weak_symbol(pthread_mutex_lock);
452 weak_symbol(pthread_mutex_unlock);
453 weak_symbol(pthread_mutex_trylock);
454 weak_symbol(pthread_mutexattr_settype);
455 weak_symbol(pthread_mutexattr_init);
456 extern NCURSES_EXPORT(int) _nc_sigprocmask(int, const sigset_t *, sigset_t *);
457 #    undef  sigprocmask
458 #    define sigprocmask _nc_sigprocmask
459 #  endif
460 #endif
461
462 #if HAVE_NANOSLEEP
463 #undef HAVE_NANOSLEEP
464 #define HAVE_NANOSLEEP 0        /* nanosleep suspends all threads */
465 #endif
466
467 #else /* !USE_PTHREADS */
468
469 #define _nc_init_pthreads()     /* nothing */
470 #define _nc_mutex_init(obj)     /* nothing */
471
472 #define _nc_lock_global(name)   /* nothing */
473 #define _nc_try_global(name)    0
474 #define _nc_unlock_global(name) /* nothing */
475
476 #endif /* USE_PTHREADS */
477
478 #if HAVE_GETTIMEOFDAY
479 # define PRECISE_GETTIME 1
480 # define TimeType struct timeval
481 #else
482 # define PRECISE_GETTIME 0
483 # define TimeType time_t
484 #endif
485
486 /*
487  * Definitions for color pairs
488  */
489 typedef unsigned colorpair_t;   /* type big enough to store PAIR_OF() */
490 #define C_SHIFT 9               /* we need more bits than there are colors */
491 #define C_MASK                  ((1 << C_SHIFT) - 1)
492 #define PAIR_OF(fg, bg)         ((((fg) & C_MASK) << C_SHIFT) | ((bg) & C_MASK))
493 #define FORE_OF(c)              (((c) >> C_SHIFT) & C_MASK)
494 #define BACK_OF(c)              ((c) & C_MASK)
495 #define isDefaultColor(c)       ((c) >= COLOR_DEFAULT || (c) < 0)
496
497 #define COLOR_DEFAULT           C_MASK
498
499 #if defined(USE_TERMLIB) && !defined(NEED_NCURSES_CH_T)
500
501 #undef NCURSES_CH_T             /* this is not a termlib feature */
502 #define NCURSES_CH_T void       /* ...but we need a pointer in SCREEN */
503
504 #endif  /* USE_TERMLIB */
505
506 #ifndef USE_TERMLIB
507 struct ldat
508 {
509         NCURSES_CH_T    *text;          /* text of the line */
510         NCURSES_SIZE_T  firstchar;      /* first changed character in the line */
511         NCURSES_SIZE_T  lastchar;       /* last changed character in the line */
512         NCURSES_SIZE_T  oldindex;       /* index of the line at last update */
513 };
514 #endif  /* USE_TERMLIB */
515
516 typedef enum {
517         M_XTERM = -1            /* use xterm's mouse tracking? */
518         ,M_NONE = 0             /* no mouse device */
519 #if USE_GPM_SUPPORT
520         ,M_GPM                  /* use GPM */
521 #endif
522 #if USE_SYSMOUSE
523         ,M_SYSMOUSE             /* FreeBSD sysmouse on console */
524 #endif
525 } MouseType;
526
527 /*
528  * Structures for scrolling.
529  */
530
531 typedef struct {
532         unsigned long hashval;
533         int oldcount, newcount;
534         int oldindex, newindex;
535 } HASHMAP;
536
537 /*
538  * Structures for soft labels.
539  */
540
541 struct _SLK;
542
543 #ifndef USE_TERMLIB
544
545 typedef struct
546 {
547         char *ent_text;         /* text for the label */
548         char *form_text;        /* formatted text (left/center/...) */
549         int ent_x;              /* x coordinate of this field */
550         char dirty;             /* this label has changed */
551         char visible;           /* field is visible */
552 } slk_ent;
553
554 typedef struct _SLK {
555         bool    dirty;          /* all labels have changed */
556         bool    hidden;         /* soft labels are hidden */
557         WINDOW  *win;
558         slk_ent *ent;
559         short   maxlab;         /* number of available labels */
560         short   labcnt;         /* number of allocated labels */
561         short   maxlen;         /* length of labels */
562         NCURSES_CH_T attr;      /* soft label attribute */
563 } SLK;
564
565 #endif  /* USE_TERMLIB */
566
567 typedef struct {
568         WINDOW *win;            /* the window used in the hook      */
569         int     line;           /* lines to take, < 0 => from bottom*/
570         int     (*hook)(WINDOW *, int); /* callback for user        */
571 } ripoff_t;
572
573 #if USE_GPM_SUPPORT
574 #undef buttons                  /* term.h defines this, and gpm uses it! */
575 #include <gpm.h>
576
577 #ifdef HAVE_LIBDL
578 /* link dynamically to GPM */
579 typedef int *TYPE_gpm_fd;
580 typedef int (*TYPE_Gpm_Open) (Gpm_Connect *, int);
581 typedef int (*TYPE_Gpm_Close) (void);
582 typedef int (*TYPE_Gpm_GetEvent) (Gpm_Event *);
583
584 #define my_gpm_fd       SP_PARM->_mouse_gpm_fd
585 #define my_Gpm_Open     SP_PARM->_mouse_Gpm_Open
586 #define my_Gpm_Close    SP_PARM->_mouse_Gpm_Close
587 #define my_Gpm_GetEvent SP_PARM->_mouse_Gpm_GetEvent
588 #else
589 /* link statically to GPM */
590 #define my_gpm_fd       &gpm_fd
591 #define my_Gpm_Open     Gpm_Open
592 #define my_Gpm_Close    Gpm_Close
593 #define my_Gpm_GetEvent Gpm_GetEvent
594 #endif /* HAVE_LIBDL */
595 #endif /* USE_GPM_SUPPORT */
596
597 typedef struct {
598     long sequence;
599     bool last_used;
600     char *fix_sgr0;             /* this holds the filtered sgr0 string */
601     char *last_bufp;            /* help with fix_sgr0 leak */
602     TERMINAL *last_term;
603 } TGETENT_CACHE;
604
605 #define TGETENT_MAX 4
606
607 /*
608  * State of tparm().
609  */
610 #define STACKSIZE 20
611
612 typedef struct {
613         union {
614                 int     num;
615                 char    *str;
616         } data;
617         bool num_type;
618 } STACK_FRAME;
619
620 #define NUM_VARS 26
621
622 typedef struct {
623 #ifdef TRACE
624         const char      *tname;
625 #endif
626         const char      *tparam_base;
627
628         STACK_FRAME     stack[STACKSIZE];
629         int             stack_ptr;
630
631         char            *out_buff;
632         size_t          out_size;
633         size_t          out_used;
634
635         char            *fmt_buff;
636         size_t          fmt_size;
637
638         int             dynamic_var[NUM_VARS];
639         int             static_vars[NUM_VARS];
640 } TPARM_STATE;
641
642 typedef struct {
643     char *text;
644     size_t size;
645 } TRACEBUF;
646
647 /*
648  * The filesystem database normally uses a single-letter for the lower level
649  * of directories.  Use a hexadecimal code for filesystems which do not
650  * preserve mixed-case names.
651  */
652 #if MIXEDCASE_FILENAMES
653 #define LEAF_FMT "%c"
654 #else
655 #define LEAF_FMT "%02x"
656 #endif
657
658 /*
659  * TRACEMSE_FMT is no longer than 80 columns, there are 5 numbers that
660  * could at most have 10 digits, and the mask contains no more than 32 bits
661  * with each bit representing less than 15 characters.  Usually the whole
662  * string is less than 80 columns, but this buffer size is an absolute
663  * limit.
664  */
665 #define TRACEMSE_MAX    (80 + (5 * 10) + (32 * 15))
666 #define TRACEMSE_FMT    "id %2d  at (%2d, %2d, %2d) state %4lx = {" /* } */
667
668 /*
669  * Global data which is not specific to a screen.
670  */
671 typedef struct {
672         SIG_ATOMIC_T    have_sigwinch;
673         SIG_ATOMIC_T    cleanup_nested;
674
675         bool            init_signals;
676         bool            init_screen;
677
678         const char      *comp_sourcename;
679         char            *comp_termtype;
680
681         bool            have_tic_directory;
682         bool            keep_tic_directory;
683         const char      *tic_directory;
684
685         char            *dbi_list;
686         int             dbi_size;
687
688         char            *first_name;
689         char            **keyname_table;
690
691         int             slk_format;
692
693         char            *safeprint_buf;
694         size_t          safeprint_used;
695
696         TGETENT_CACHE   tgetent_cache[TGETENT_MAX];
697         int             tgetent_index;
698         long            tgetent_sequence;
699
700 #ifndef USE_SP_WINDOWLIST
701         WINDOWLIST      *_nc_windowlist;
702 #define WindowList(sp)  _nc_globals._nc_windowlist
703 #endif
704
705 #if USE_HOME_TERMINFO
706         char            *home_terminfo;
707 #endif
708
709 #if !USE_SAFE_SPRINTF
710         int             safeprint_cols;
711         int             safeprint_rows;
712 #endif
713
714 #ifdef TRACE
715         bool            init_trace;
716         char            trace_fname[PATH_MAX];
717         int             trace_level;
718         FILE            *trace_fp;
719
720         char            *tracearg_buf;
721         size_t          tracearg_used;
722
723         TRACEBUF        *tracebuf_ptr;
724         size_t          tracebuf_used;
725
726         char            tracechr_buf[40];
727
728         char            *tracedmp_buf;
729         size_t          tracedmp_used;
730
731         unsigned char   *tracetry_buf;
732         size_t          tracetry_used;
733
734         char            traceatr_color_buf[2][80];
735         int             traceatr_color_sel;
736         int             traceatr_color_last;
737 #if !defined(USE_PTHREADS) && USE_REENTRANT
738         int             nested_tracef;
739 #endif
740 #endif  /* TRACE */
741
742 #ifdef USE_PTHREADS
743         pthread_mutex_t mutex_curses;
744         pthread_mutex_t mutex_tst_tracef;
745         pthread_mutex_t mutex_tracef;
746         int             nested_tracef;
747         int             use_pthreads;
748 #define _nc_use_pthreads        _nc_globals.use_pthreads
749 #endif
750 } NCURSES_GLOBALS;
751
752 extern NCURSES_EXPORT_VAR(NCURSES_GLOBALS) _nc_globals;
753
754 #define N_RIPS 5
755
756 /*
757  * Global data which can be swept up into a SCREEN when one is created.
758  * It may be modified before the next SCREEN is created.
759  */
760 typedef struct {
761         bool            use_env;
762         bool            filter_mode;
763         attr_t          previous_attr;
764 #ifndef USE_SP_RIPOFF
765         ripoff_t        rippedoff[N_RIPS];
766         ripoff_t        *rsp;
767 #endif
768         TPARM_STATE     tparm_state;
769         TTY             *saved_tty;     /* savetty/resetty information      */
770 #if NCURSES_NO_PADDING
771         bool            _no_padding;    /* flag to set if padding disabled  */
772 #endif
773 #if BROKEN_LINKER || USE_REENTRANT
774         chtype          *real_acs_map;
775         int             _LINES;
776         int             _COLS;
777         int             _TABSIZE;
778         int             _ESCDELAY;
779         TERMINAL        *_cur_term;
780 #ifdef TRACE
781         long            _outchars;
782         const char      *_tputs_trace;
783 #endif
784 #endif
785 } NCURSES_PRESCREEN;
786
787 /*
788  * Use screen-specific ripoff data (for softkeys) rather than global.
789  */
790 #ifdef USE_SP_RIPOFF
791 #define safe_ripoff_sp     (sp)->rsp
792 #define safe_ripoff_stack  (sp)->rippedoff
793 #else
794 #define safe_ripoff_sp     _nc_prescreen.rsp
795 #define safe_ripoff_stack  _nc_prescreen.rippedoff
796 #endif
797
798 extern NCURSES_EXPORT_VAR(NCURSES_PRESCREEN) _nc_prescreen;
799
800 /*
801  * The SCREEN structure.
802  */
803
804 struct screen {
805         int             _ifd;           /* input file ptr for screen        */
806         FILE            *_ofp;          /* output file ptr for screen       */
807         char            *_setbuf;       /* buffered I/O for output          */
808         bool            _filtered;      /* filter() was called              */
809         bool            _buffered;      /* setvbuf uses _setbuf data        */
810         bool            _prescreen;     /* is in prescreen phase            */
811         bool            _use_env;       /* LINES & COLS from environment?   */
812         int             _checkfd;       /* filedesc for typeahead check     */
813         TERMINAL        *_term;         /* terminal type information        */
814         TTY             _saved_tty;     /* savetty/resetty information      */
815         NCURSES_SIZE_T  _lines;         /* screen lines                     */
816         NCURSES_SIZE_T  _columns;       /* screen columns                   */
817
818         NCURSES_SIZE_T  _lines_avail;   /* lines available for stdscr       */
819         NCURSES_SIZE_T  _topstolen;     /* lines stolen from top            */
820
821         WINDOW          *_curscr;       /* current screen                   */
822         WINDOW          *_newscr;       /* virtual screen to be updated to  */
823         WINDOW          *_stdscr;       /* screen's full-window context     */
824
825 #define CurScreen(sp)  (sp)->_curscr
826 #define NewScreen(sp)  (sp)->_newscr
827 #define StdScreen(sp)  (sp)->_stdscr
828
829         TRIES           *_keytry;       /* "Try" for use with keypad mode   */
830         TRIES           *_key_ok;       /* Disabled keys via keyok(,FALSE)  */
831         bool            _tried;         /* keypad mode was initialized      */
832         bool            _keypad_on;     /* keypad mode is currently on      */
833
834         bool            _called_wgetch; /* check for recursion in wgetch()  */
835         int             _fifo[FIFO_SIZE];       /* input push-back buffer   */
836         short           _fifohead,      /* head of fifo queue               */
837                         _fifotail,      /* tail of fifo queue               */
838                         _fifopeek,      /* where to peek for next char      */
839                         _fifohold;      /* set if breakout marked           */
840
841         int             _endwin;        /* are we out of window mode?       */
842         NCURSES_CH_T    *_current_attr; /* holds current attributes set     */
843         int             _coloron;       /* is color enabled?                */
844         int             _color_defs;    /* are colors modified              */
845         int             _cursor;        /* visibility of the cursor         */
846         int             _cursrow;       /* physical cursor row              */
847         int             _curscol;       /* physical cursor column           */
848         bool            _notty;         /* true if we cannot switch non-tty */
849         int             _nl;            /* True if NL -> CR/NL is on        */
850         int             _raw;           /* True if in raw mode              */
851         int             _cbreak;        /* 1 if in cbreak mode              */
852                                         /* > 1 if in halfdelay mode         */
853         int             _echo;          /* True if echo on                  */
854         int             _use_meta;      /* use the meta key?                */
855         struct _SLK     *_slk;          /* ptr to soft key struct / NULL    */
856         int             slk_format;     /* selected format for this screen  */
857         /* cursor movement costs; units are 10ths of milliseconds */
858 #if NCURSES_NO_PADDING
859         bool            _no_padding;    /* flag to set if padding disabled  */
860 #endif
861         int             _char_padding;  /* cost of character put            */
862         int             _cr_cost;       /* cost of (carriage_return)        */
863         int             _cup_cost;      /* cost of (cursor_address)         */
864         int             _home_cost;     /* cost of (cursor_home)            */
865         int             _ll_cost;       /* cost of (cursor_to_ll)           */
866 #if USE_HARD_TABS
867         int             _ht_cost;       /* cost of (tab)                    */
868         int             _cbt_cost;      /* cost of (backtab)                */
869 #endif /* USE_HARD_TABS */
870         int             _cub1_cost;     /* cost of (cursor_left)            */
871         int             _cuf1_cost;     /* cost of (cursor_right)           */
872         int             _cud1_cost;     /* cost of (cursor_down)            */
873         int             _cuu1_cost;     /* cost of (cursor_up)              */
874         int             _cub_cost;      /* cost of (parm_cursor_left)       */
875         int             _cuf_cost;      /* cost of (parm_cursor_right)      */
876         int             _cud_cost;      /* cost of (parm_cursor_down)       */
877         int             _cuu_cost;      /* cost of (parm_cursor_up)         */
878         int             _hpa_cost;      /* cost of (column_address)         */
879         int             _vpa_cost;      /* cost of (row_address)            */
880         /* used in tty_update.c, must be chars */
881         int             _ed_cost;       /* cost of (clr_eos)                */
882         int             _el_cost;       /* cost of (clr_eol)                */
883         int             _el1_cost;      /* cost of (clr_bol)                */
884         int             _dch1_cost;     /* cost of (delete_character)       */
885         int             _ich1_cost;     /* cost of (insert_character)       */
886         int             _dch_cost;      /* cost of (parm_dch)               */
887         int             _ich_cost;      /* cost of (parm_ich)               */
888         int             _ech_cost;      /* cost of (erase_chars)            */
889         int             _rep_cost;      /* cost of (repeat_char)            */
890         int             _hpa_ch_cost;   /* cost of (column_address)         */
891         int             _cup_ch_cost;   /* cost of (cursor_address)         */
892         int             _cuf_ch_cost;   /* cost of (parm_cursor_right)      */
893         int             _inline_cost;   /* cost of inline-move              */
894         int             _smir_cost;     /* cost of (enter_insert_mode)      */
895         int             _rmir_cost;     /* cost of (exit_insert_mode)       */
896         int             _ip_cost;       /* cost of (insert_padding)         */
897         /* used in lib_mvcur.c */
898         char *          _address_cursor;
899         /* used in tty_update.c */
900         int             _scrolling;     /* 1 if terminal's smart enough to  */
901
902         /* used in lib_color.c */
903         color_t         *_color_table;  /* screen's color palette            */
904         int             _color_count;   /* count of colors in palette        */
905         colorpair_t     *_color_pairs;  /* screen's color pair list          */
906         int             _pair_count;    /* count of color pairs              */
907         int             _pair_limit;    /* actual limit of color-pairs       */
908 #if NCURSES_EXT_FUNCS
909         bool            _default_color; /* use default colors                */
910         bool            _has_sgr_39_49; /* has ECMA default color support    */
911         int             _default_fg;    /* assumed default foreground        */
912         int             _default_bg;    /* assumed default background        */
913         int             _default_pairs; /* count pairs using default color   */
914 #endif
915         chtype          _ok_attributes; /* valid attributes for terminal     */
916         chtype          _xmc_suppress;  /* attributes to suppress if xmc     */
917         chtype          _xmc_triggers;  /* attributes to process if xmc      */
918         chtype *        _acs_map;       /* the real alternate-charset map    */
919         bool *          _screen_acs_map;
920
921
922         /* used in lib_vidattr.c */
923         bool            _use_rmso;      /* true if we may use 'rmso'         */
924         bool            _use_rmul;      /* true if we may use 'rmul'         */
925
926         /*
927          * These data correspond to the state of the idcok() and idlok()
928          * functions.  A caveat is in order here:  the XSI and SVr4
929          * documentation specify that these functions apply to the window which
930          * is given as an argument.  However, ncurses implements this logic
931          * only for the newscr/curscr update process, _not_ per-window.
932          */
933         bool            _nc_sp_idlok;
934         bool            _nc_sp_idcok;
935 #define _nc_idlok SP->_nc_sp_idlok
936 #define _nc_idcok SP->_nc_sp_idcok
937
938         /*
939          * These are the data that support the mouse interface.
940          */
941         bool            _mouse_initialized;
942         MouseType       _mouse_type;
943         int             _maxclick;
944         bool            (*_mouse_event) (SCREEN *);
945         bool            (*_mouse_inline)(SCREEN *);
946         bool            (*_mouse_parse) (SCREEN *, int);
947         void            (*_mouse_resume)(SCREEN *);
948         void            (*_mouse_wrap)  (SCREEN *);
949         int             _mouse_fd;      /* file-descriptor, if any */
950         bool            _mouse_active;  /* true if initialized */
951         mmask_t         _mouse_mask;
952         NCURSES_CONST char *_mouse_xtermcap; /* string to enable/disable mouse */
953         MEVENT          _mouse_events[EV_MAX];  /* hold the last mouse event seen */
954         MEVENT          *_mouse_eventp; /* next free slot in event queue */
955
956 #if USE_GPM_SUPPORT
957         bool            _mouse_gpm_loaded;
958         bool            _mouse_gpm_found;
959 #ifdef HAVE_LIBDL
960         void            *_dlopen_gpm;
961         TYPE_gpm_fd     _mouse_gpm_fd;
962         TYPE_Gpm_Open   _mouse_Gpm_Open;
963         TYPE_Gpm_Close  _mouse_Gpm_Close;
964         TYPE_Gpm_GetEvent _mouse_Gpm_GetEvent;
965 #endif
966         Gpm_Connect     _mouse_gpm_connect;
967 #endif /* USE_GPM_SUPPORT */
968
969 #if USE_EMX_MOUSE
970         int             _emxmouse_wfd;
971         int             _emxmouse_thread;
972         int             _emxmouse_activated;
973         char            _emxmouse_buttons[4];
974 #endif
975
976 #if USE_SYSMOUSE
977         MEVENT          _sysmouse_fifo[FIFO_SIZE];
978         int             _sysmouse_head;
979         int             _sysmouse_tail;
980         int             _sysmouse_char_width;   /* character width */
981         int             _sysmouse_char_height;  /* character height */
982         int             _sysmouse_old_buttons;
983         int             _sysmouse_new_buttons;
984 #endif
985
986         /*
987          * This supports automatic resizing
988          */
989 #if USE_SIZECHANGE
990         int             (*_resize)(int,int);
991 #endif
992
993         /*
994          * These are data that support the proper handling of the panel stack on an
995          * per screen basis.
996          */
997         struct panelhook _panelHook;
998
999         bool            _sig_winch;
1000         SCREEN          *_next_screen;
1001
1002         /* hashes for old and new lines */
1003         unsigned long   *oldhash, *newhash;
1004         HASHMAP         *hashtab;
1005         int             hashtab_len;
1006         int             *_oldnum_list;
1007         int             _oldnum_size;
1008
1009         bool            _cleanup;       /* cleanup after int/quit signal */
1010         NCURSES_SP_OUTC _outch;         /* output handler if not putc */
1011
1012         int             _legacy_coding; /* see use_legacy_coding() */
1013
1014 #if USE_REENTRANT
1015         char            _ttytype[NAMESIZE];
1016         int             _ESCDELAY;
1017         int             _TABSIZE;
1018         int             _LINES;
1019         int             _COLS;
1020 #ifdef TRACE
1021         long            _outchars;
1022         const char      *_tputs_trace;
1023 #endif
1024 #endif
1025
1026 #ifdef TRACE
1027         char            tracechr_buf[40];
1028         char            tracemse_buf[TRACEMSE_MAX];
1029 #endif
1030 #ifdef USE_SP_WINDOWLIST
1031         WINDOWLIST*     _windowlist;
1032 #define WindowList(sp)  (sp)->_windowlist
1033 #endif
1034         NCURSES_OUTC    jump;
1035
1036         ripoff_t        rippedoff[N_RIPS];
1037         ripoff_t        *rsp;
1038
1039         /*
1040          * ncurses/ncursesw are the same up to this point.
1041          */
1042 #if USE_WIDEC_SUPPORT
1043         /* recent versions of 'screen' have partially-working support for
1044          * UTF-8, but do not permit ACS at the same time (see tty_update.c).
1045          */
1046         bool            _screen_acs_fix;
1047 #endif
1048 };
1049
1050 extern NCURSES_EXPORT_VAR(SCREEN *) _nc_screen_chain;
1051 extern NCURSES_EXPORT_VAR(SIG_ATOMIC_T) _nc_have_sigwinch;
1052
1053         WINDOWLIST {
1054         WINDOW  win;            /* first, so WINDOW_EXT() works */
1055         WINDOWLIST *next;
1056         SCREEN *screen;         /* screen containing the window */
1057 #ifdef _XOPEN_SOURCE_EXTENDED
1058         char addch_work[(MB_LEN_MAX * 9) + 1];
1059         unsigned addch_used;    /* number of bytes in addch_work[] */
1060         int addch_x;            /* x-position for addch_work[] */
1061         int addch_y;            /* y-position for addch_work[] */
1062 #endif
1063 };
1064
1065 #define WINDOW_EXT(win,field) (((WINDOWLIST *)(win))->field)
1066
1067 #define SP_PRE_INIT(sp)                         \
1068     sp->_cursrow = -1;                          \
1069     sp->_curscol = -1;                          \
1070     sp->_nl = TRUE;                             \
1071     sp->_raw = FALSE;                           \
1072     sp->_cbreak = 0;                            \
1073     sp->_echo = TRUE;                           \
1074     sp->_fifohead = -1;                         \
1075     sp->_endwin = TRUE;                         \
1076     sp->_cursor = -1;                           \
1077     WindowList(sp) = 0;                         \
1078     sp->_outch = NCURSES_SP_NAME(_nc_outch);    \
1079     sp->jump = 0                                \
1080
1081 /* usually in <limits.h> */
1082 #ifndef UCHAR_MAX
1083 #define UCHAR_MAX 255
1084 #endif
1085
1086 /* The terminfo source is assumed to be 7-bit ASCII */
1087 #define is7bits(c)      ((unsigned)(c) < 128)
1088
1089 /* Checks for isprint() should be done on 8-bit characters (non-wide) */
1090 #define is8bits(c)      ((unsigned)(c) <= UCHAR_MAX)
1091
1092 #ifndef min
1093 #define min(a,b)        ((a) > (b)  ?  (b)  :  (a))
1094 #endif
1095
1096 #ifndef max
1097 #define max(a,b)        ((a) < (b)  ?  (b)  :  (a))
1098 #endif
1099
1100 /* usually in <unistd.h> */
1101 #ifndef STDIN_FILENO
1102 #define STDIN_FILENO 0
1103 #endif
1104
1105 #ifndef STDOUT_FILENO
1106 #define STDOUT_FILENO 1
1107 #endif
1108
1109 #ifndef STDERR_FILENO
1110 #define STDERR_FILENO 2
1111 #endif
1112
1113 #ifndef EXIT_SUCCESS
1114 #define EXIT_SUCCESS 0
1115 #endif
1116
1117 #ifndef EXIT_FAILURE
1118 #define EXIT_FAILURE 1
1119 #endif
1120
1121 #ifndef R_OK
1122 #define R_OK    4               /* Test for read permission.  */
1123 #endif
1124 #ifndef W_OK
1125 #define W_OK    2               /* Test for write permission.  */
1126 #endif
1127 #ifndef X_OK
1128 #define X_OK    1               /* Test for execute permission.  */
1129 #endif
1130 #ifndef F_OK
1131 #define F_OK    0               /* Test for existence.  */
1132 #endif
1133
1134 #if HAVE_FCNTL_H
1135 #include <fcntl.h>              /* may define O_BINARY  */
1136 #endif
1137
1138 #ifndef O_BINARY
1139 #define O_BINARY 0
1140 #endif
1141
1142 #ifdef TRACE
1143 #if USE_REENTRANT
1144 #define COUNT_OUTCHARS(n) _nc_count_outchars(n);
1145 #else
1146 #define COUNT_OUTCHARS(n) _nc_outchars += (n);
1147 #endif
1148 #else
1149 #define COUNT_OUTCHARS(n) /* nothing */
1150 #endif
1151
1152 #define RESET_OUTCHARS() COUNT_OUTCHARS(-_nc_outchars)
1153
1154 #define UChar(c)        ((unsigned char)(c))
1155 #define ChCharOf(c)     ((c) & (chtype)A_CHARTEXT)
1156 #define ChAttrOf(c)     ((c) & (chtype)A_ATTRIBUTES)
1157
1158 #ifndef MB_LEN_MAX
1159 #define MB_LEN_MAX 8 /* should be >= MB_CUR_MAX, but that may be a function */
1160 #endif
1161
1162 #if USE_WIDEC_SUPPORT /* { */
1163 #define isEILSEQ(status) (((size_t)status == (size_t)-1) && (errno == EILSEQ))
1164
1165 #define init_mb(state)  memset(&state, 0, sizeof(state))
1166
1167 #if NCURSES_EXT_COLORS
1168 #define NulColor        , 0
1169 #else
1170 #define NulColor        /* nothing */
1171 #endif
1172
1173 #define NulChar         0,0,0,0 /* FIXME: see CCHARW_MAX */
1174 #define CharOf(c)       ((c).chars[0])
1175 #define AttrOf(c)       ((c).attr)
1176
1177 #define AddAttr(c,a)    AttrOf(c) |=  ((a) & A_ATTRIBUTES)
1178 #define RemAttr(c,a)    AttrOf(c) &= ~((a) & A_ATTRIBUTES)
1179 #define SetAttr(c,a)    AttrOf(c) =   ((a) & A_ATTRIBUTES) | WidecExt(c)
1180
1181 #define NewChar2(c,a)   { a, { c, NulChar } NulColor }
1182 #define NewChar(ch)     NewChar2(ChCharOf(ch), ChAttrOf(ch))
1183
1184 #if CCHARW_MAX == 5
1185 #define CharEq(a,b)     (((a).attr == (b).attr) \
1186                        && (a).chars[0] == (b).chars[0] \
1187                        && (a).chars[1] == (b).chars[1] \
1188                        && (a).chars[2] == (b).chars[2] \
1189                        && (a).chars[3] == (b).chars[3] \
1190                        && (a).chars[4] == (b).chars[4] \
1191                         if_EXT_COLORS(&& (a).ext_color == (b).ext_color))
1192 #else
1193 #define CharEq(a,b)     (!memcmp(&(a), &(b), sizeof(a)))
1194 #endif
1195
1196 #define SetChar(ch,c,a) do {                                                        \
1197                             NCURSES_CH_T *_cp = &ch;                                \
1198                             memset(_cp, 0, sizeof(ch));                             \
1199                             _cp->chars[0] = (c);                                            \
1200                             _cp->attr = (a);                                        \
1201                             if_EXT_COLORS(SetPair(ch, PAIR_NUMBER(a)));             \
1202                         } while (0)
1203 #define CHREF(wch)      (&wch)
1204 #define CHDEREF(wch)    (*wch)
1205 #define ARG_CH_T        NCURSES_CH_T *
1206 #define CARG_CH_T       const NCURSES_CH_T *
1207 #define PUTC_DATA       char PUTC_buf[MB_LEN_MAX]; int PUTC_i, PUTC_n; \
1208                         mbstate_t PUT_st; wchar_t PUTC_ch
1209 #define PUTC_INIT       init_mb (PUT_st)
1210 #define PUTC(ch,b)      do { if(!isWidecExt(ch)) {                                  \
1211                         if (Charable(ch)) {                                         \
1212                             fputc(CharOf(ch), b);                                   \
1213                             COUNT_OUTCHARS(1);                                      \
1214                         } else {                                                    \
1215                             PUTC_INIT;                                              \
1216                             for (PUTC_i = 0; PUTC_i < CCHARW_MAX; ++PUTC_i) {       \
1217                                 PUTC_ch = (ch).chars[PUTC_i];                       \
1218                                 if (PUTC_ch == L'\0')                               \
1219                                     break;                                          \
1220                                 PUTC_n = wcrtomb(PUTC_buf,                          \
1221                                                  (ch).chars[PUTC_i], &PUT_st);      \
1222                                 if (PUTC_n <= 0) {                                  \
1223                                     if (PUTC_ch && is8bits(PUTC_ch) && PUTC_i == 0) \
1224                                         putc(PUTC_ch,b);                            \
1225                                     break;                                          \
1226                                 }                                                   \
1227                                 fwrite(PUTC_buf, (unsigned) PUTC_n, 1, b);          \
1228                             }                                                       \
1229                             COUNT_OUTCHARS(PUTC_i);                                 \
1230                         } } } while (0)
1231
1232 #define BLANK           NewChar2(' ', WA_NORMAL)
1233 #define ZEROS           NewChar2('\0', WA_NORMAL)
1234 #define ISBLANK(ch)     ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0')
1235
1236         /*
1237          * Wide characters cannot be represented in the A_CHARTEXT mask of
1238          * attr_t's but an application might have set a narrow character there.
1239          * But even in that case, it would only be a printable character, or
1240          * zero.  Otherwise we can use those bits to tell if a cell is the
1241          * first or extension part of a wide character.
1242          */
1243 #define WidecExt(ch)    (AttrOf(ch) & A_CHARTEXT)
1244 #define isWidecBase(ch) (WidecExt(ch) == 1)
1245 #define isWidecExt(ch)  (WidecExt(ch) > 1 && WidecExt(ch) < 32)
1246 #define SetWidecExt(dst, ext)   AttrOf(dst) &= ~A_CHARTEXT,             \
1247                                 AttrOf(dst) |= (ext + 1)
1248
1249 #define if_WIDEC(code)  code
1250 #define Charable(ch)    ((SP_PARM != 0 && SP_PARM->_legacy_coding)      \
1251                          || (AttrOf(ch) & A_ALTCHARSET)                 \
1252                          || (!isWidecExt(ch) &&                         \
1253                              (ch).chars[1] == L'\0' &&                  \
1254                              _nc_is_charable(CharOf(ch))))
1255
1256 #define L(ch)           L ## ch
1257 #else /* }{ */
1258 #define CharOf(c)       ChCharOf(c)
1259 #define AttrOf(c)       ChAttrOf(c)
1260 #define AddAttr(c,a)    c |= (a)
1261 #define RemAttr(c,a)    c &= ~((a) & A_ATTRIBUTES)
1262 #define SetAttr(c,a)    c = ((c) & ~A_ATTRIBUTES) | (a)
1263 #define NewChar(ch)     (ch)
1264 #define NewChar2(c,a)   ((c) | (a))
1265 #define CharEq(a,b)     ((a) == (b))
1266 #define SetChar(ch,c,a) ch = (c) | (a)
1267 #define CHREF(wch)      wch
1268 #define CHDEREF(wch)    wch
1269 #define ARG_CH_T        NCURSES_CH_T
1270 #define CARG_CH_T       NCURSES_CH_T
1271 #define PUTC_DATA       int data = 0
1272 #define PUTC(ch,b)      do { data = CharOf(ch); putc(data,b); } while (0)
1273
1274 #define BLANK           (' '|A_NORMAL)
1275 #define ZEROS           ('\0'|A_NORMAL)
1276 #define ISBLANK(ch)     (CharOf(ch) == ' ')
1277
1278 #define isWidecExt(ch)  (0)
1279 #define if_WIDEC(code) /* nothing */
1280
1281 #define L(ch)           ch
1282 #endif /* } */
1283
1284 #define AttrOfD(ch)     AttrOf(CHDEREF(ch))
1285 #define CharOfD(ch)     CharOf(CHDEREF(ch))
1286 #define SetChar2(wch,ch)    SetChar(wch,ChCharOf(ch),ChAttrOf(ch))
1287
1288 #define BLANK_ATTR      A_NORMAL
1289 #define BLANK_TEXT      L(' ')
1290
1291 #define CHANGED     -1
1292
1293 #define LEGALYX(w, y, x) \
1294               ((w) != 0 && \
1295                 ((x) >= 0 && (x) <= (w)->_maxx && \
1296                  (y) >= 0 && (y) <= (w)->_maxy))
1297
1298 #define CHANGED_CELL(line,col) \
1299         if (line->firstchar == _NOCHANGE) \
1300                 line->firstchar = line->lastchar = col; \
1301         else if ((col) < line->firstchar) \
1302                 line->firstchar = col; \
1303         else if ((col) > line->lastchar) \
1304                 line->lastchar = col
1305
1306 #define CHANGED_RANGE(line,start,end) \
1307         if (line->firstchar == _NOCHANGE \
1308          || line->firstchar > (start)) \
1309                 line->firstchar = start; \
1310         if (line->lastchar == _NOCHANGE \
1311          || line->lastchar < (end)) \
1312                 line->lastchar = end
1313
1314 #define CHANGED_TO_EOL(line,start,end) \
1315         if (line->firstchar == _NOCHANGE \
1316          || line->firstchar > (start)) \
1317                 line->firstchar = start; \
1318         line->lastchar = end
1319
1320 #define SIZEOF(v) (sizeof(v)/sizeof(v[0]))
1321
1322 #define FreeIfNeeded(p)  if ((p) != 0) free(p)
1323
1324 /* FreeAndNull() is not a comma-separated expression because some compilers
1325  * do not accept a mixture of void with values.
1326  */
1327 #define FreeAndNull(p)   free(p); p = 0
1328
1329 #include <nc_alloc.h>
1330
1331 /*
1332  * TTY bit definition for converting tabs to spaces.
1333  */
1334 #ifdef TAB3
1335 # define OFLAGS_TABS TAB3       /* POSIX specifies TAB3 */
1336 #else
1337 # ifdef XTABS
1338 #  define OFLAGS_TABS XTABS     /* XTABS is usually the "same" */
1339 # else
1340 #  ifdef OXTABS
1341 #   define OFLAGS_TABS OXTABS   /* the traditional BSD equivalent */
1342 #  else
1343 #   define OFLAGS_TABS 0
1344 #  endif
1345 # endif
1346 #endif
1347
1348 /*
1349  * Standardize/simplify common loops
1350  */
1351 #define each_screen(p) p = _nc_screen_chain; p != 0; p = (p)->_next_screen
1352 #define each_window(sp,p) p = WindowList(sp); p != 0; p = (p)->next
1353 #define each_ripoff(p) p = safe_ripoff_stack; (p - safe_ripoff_stack) < N_RIPS; ++p
1354
1355 /*
1356  * Prefixes for call/return points of library function traces.  We use these to
1357  * instrument the public functions so that the traces can be easily transformed
1358  * into regression scripts.
1359  */
1360 #define T_CALLED(fmt) "called {" fmt
1361 #define T_CREATE(fmt) "create :" fmt
1362 #define T_RETURN(fmt) "return }" fmt
1363
1364 #ifdef TRACE
1365
1366 #if USE_REENTRANT
1367 #define TPUTS_TRACE(s)  _nc_set_tputs_trace(s);
1368 #else
1369 #define TPUTS_TRACE(s)  _nc_tputs_trace = s;
1370 #endif
1371
1372 #define START_TRACE() \
1373         if ((_nc_tracing & TRACE_MAXIMUM) == 0) { \
1374             int t = _nc_getenv_num("NCURSES_TRACE"); \
1375             if (t >= 0) \
1376                 trace((unsigned) t); \
1377         }
1378
1379 /*
1380  * Many of the _tracef() calls use static buffers; lock the trace state before
1381  * trying to fill them.
1382  */
1383 #if USE_REENTRANT
1384 #define USE_TRACEF(mask) _nc_use_tracef(mask)
1385 extern NCURSES_EXPORT(int)      _nc_use_tracef (unsigned);
1386 extern NCURSES_EXPORT(void)     _nc_locked_tracef (const char *, ...) GCC_PRINTFLIKE(1,2);
1387 #else
1388 #define USE_TRACEF(mask) (_nc_tracing & (mask))
1389 #define _nc_locked_tracef _tracef
1390 #endif
1391
1392 #define TR(n, a)        if (USE_TRACEF(n)) _nc_locked_tracef a
1393 #define T(a)            TR(TRACE_CALLS, a)
1394 #define TRACE_RETURN(value,type) return _nc_retrace_##type(value)
1395
1396 #define returnAttr(code)        TRACE_RETURN(code,attr_t)
1397 #define returnBits(code)        TRACE_RETURN(code,unsigned)
1398 #define returnBool(code)        TRACE_RETURN(code,bool)
1399 #define returnCPtr(code)        TRACE_RETURN(code,cptr)
1400 #define returnCVoidPtr(code)    TRACE_RETURN(code,cvoid_ptr)
1401 #define returnChtype(code)      TRACE_RETURN(code,chtype)
1402 #define returnCode(code)        TRACE_RETURN(code,int)
1403 #define returnPtr(code)         TRACE_RETURN(code,ptr)
1404 #define returnSP(code)          TRACE_RETURN(code,sp)
1405 #define returnVoid              T((T_RETURN(""))); return
1406 #define returnVoidPtr(code)     TRACE_RETURN(code,void_ptr)
1407 #define returnWin(code)         TRACE_RETURN(code,win)
1408
1409 extern NCURSES_EXPORT(NCURSES_BOOL)     _nc_retrace_bool (NCURSES_BOOL);
1410 extern NCURSES_EXPORT(NCURSES_CONST void *) _nc_retrace_cvoid_ptr (NCURSES_CONST void *);
1411 extern NCURSES_EXPORT(SCREEN *)         _nc_retrace_sp (SCREEN *);
1412 extern NCURSES_EXPORT(WINDOW *)         _nc_retrace_win (WINDOW *);
1413 extern NCURSES_EXPORT(attr_t)           _nc_retrace_attr_t (attr_t);
1414 extern NCURSES_EXPORT(char *)           _nc_retrace_ptr (char *);
1415 extern NCURSES_EXPORT(char *)           _nc_trace_ttymode(TTY *tty);
1416 extern NCURSES_EXPORT(char *)           _nc_varargs (const char *, va_list);
1417 extern NCURSES_EXPORT(chtype)           _nc_retrace_chtype (chtype);
1418 extern NCURSES_EXPORT(const char *)     _nc_altcharset_name(attr_t, chtype);
1419 extern NCURSES_EXPORT(const char *)     _nc_retrace_cptr (const char *);
1420 extern NCURSES_EXPORT(int)              _nc_retrace_int (int);
1421 extern NCURSES_EXPORT(unsigned)         _nc_retrace_unsigned (unsigned);
1422 extern NCURSES_EXPORT(void *)           _nc_retrace_void_ptr (void *);
1423 extern NCURSES_EXPORT(void)             _nc_fifo_dump (SCREEN *);
1424
1425 #if USE_REENTRANT
1426 NCURSES_WRAPPED_VAR(long, _nc_outchars);
1427 NCURSES_WRAPPED_VAR(const char *, _nc_tputs_trace);
1428 #define _nc_outchars       NCURSES_PUBLIC_VAR(_nc_outchars())
1429 #define _nc_tputs_trace    NCURSES_PUBLIC_VAR(_nc_tputs_trace())
1430 extern NCURSES_EXPORT(void)             _nc_set_tputs_trace (const char *);
1431 extern NCURSES_EXPORT(void)             _nc_count_outchars (long);
1432 #else
1433 extern NCURSES_EXPORT_VAR(const char *) _nc_tputs_trace;
1434 extern NCURSES_EXPORT_VAR(long)         _nc_outchars;
1435 #endif
1436
1437 extern NCURSES_EXPORT_VAR(unsigned)     _nc_tracing;
1438
1439 #if USE_WIDEC_SUPPORT
1440 extern NCURSES_EXPORT(const char *) _nc_viswbuf2 (int, const wchar_t *);
1441 extern NCURSES_EXPORT(const char *) _nc_viswbufn (const wchar_t *, int);
1442 #endif
1443
1444 extern NCURSES_EXPORT(const char *) _nc_viscbuf2 (int, const NCURSES_CH_T *, int);
1445 extern NCURSES_EXPORT(const char *) _nc_viscbuf (const NCURSES_CH_T *, int);
1446
1447 #else /* !TRACE */
1448
1449 #define START_TRACE() /* nothing */
1450
1451 #define T(a)
1452 #define TR(n, a)
1453 #define TPUTS_TRACE(s)
1454
1455 #define returnAttr(code)        return code
1456 #define returnBits(code)        return code
1457 #define returnBool(code)        return code
1458 #define returnCPtr(code)        return code
1459 #define returnCVoidPtr(code)    return code
1460 #define returnChtype(code)      return code
1461 #define returnCode(code)        return code
1462 #define returnPtr(code)         return code
1463 #define returnSP(code)          return code
1464 #define returnVoid              return
1465 #define returnVoidPtr(code)     return code
1466 #define returnWin(code)         return code
1467
1468 #endif /* TRACE/!TRACE */
1469
1470 /*
1471  * Return-codes for tgetent() and friends.
1472  */
1473 #define TGETENT_YES  1          /* entry is found */
1474 #define TGETENT_NO   0          /* entry is not found */
1475 #define TGETENT_ERR -1          /* an error occurred */
1476
1477 extern NCURSES_EXPORT(const char *) _nc_visbuf2 (int, const char *);
1478 extern NCURSES_EXPORT(const char *) _nc_visbufn (const char *, int);
1479
1480 #define EMPTY_MODULE(name) \
1481 extern  NCURSES_EXPORT(void) name (void); \
1482         NCURSES_EXPORT(void) name (void) { }
1483
1484 #define ALL_BUT_COLOR ((chtype)~(A_COLOR))
1485 #define NONBLANK_ATTR (A_NORMAL|A_BOLD|A_DIM|A_BLINK)
1486 #define XMC_CHANGES(c) ((c) & SP_PARM->_xmc_suppress)
1487
1488 #define toggle_attr_on(S,at) {\
1489    if (PAIR_NUMBER(at) > 0) {\
1490       (S) = ((S) & ALL_BUT_COLOR) | (at);\
1491    } else {\
1492       (S) |= (at);\
1493    }\
1494    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1495
1496
1497 #define toggle_attr_off(S,at) {\
1498    if (PAIR_NUMBER(at) > 0) {\
1499       (S) &= ~(at|A_COLOR);\
1500    } else {\
1501       (S) &= ~(at);\
1502    }\
1503    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1504
1505 #define DelCharCost(sp,count) \
1506                 ((parm_dch != 0) \
1507                 ? sp->_dch_cost \
1508                 : ((delete_character != 0) \
1509                         ? (sp->_dch1_cost * count) \
1510                         : INFINITY))
1511
1512 #define InsCharCost(sp,count) \
1513                 ((parm_ich != 0) \
1514                 ? sp->_ich_cost \
1515                 : ((enter_insert_mode && exit_insert_mode) \
1516                   ? sp->_smir_cost + sp->_rmir_cost + (sp->_ip_cost * count) \
1517                   : ((insert_character != 0) \
1518                     ? ((sp->_ich1_cost + sp->_ip_cost) * count) \
1519                     : INFINITY)))
1520
1521 #if USE_XMC_SUPPORT
1522 #define UpdateAttrs(sp,c)       if (!SameAttrOf(SCREEN_ATTRS(sp), c)) { \
1523                                 attr_t chg = AttrOf(SCREEN_ATTRS(sp)); \
1524                                 VIDATTR(sp, AttrOf(c), GetPair(c)); \
1525                                 if (magic_cookie_glitch > 0 \
1526                                  && XMC_CHANGES((chg ^ AttrOf(SCREEN_ATTRS(sp))))) { \
1527                                         T(("%s @%d before glitch %d,%d", \
1528                                                 __FILE__, __LINE__, \
1529                                                 sp->_cursrow, \
1530                                                 sp->_curscol)); \
1531                                         NCURSES_SP_NAME(_nc_do_xmc_glitch)(NCURSES_SP_ARGx chg); \
1532                                 } \
1533                         }
1534 #else
1535 #define UpdateAttrs(sp,c)       if (!SameAttrOf(SCREEN_ATTRS(sp), c)) \
1536                                     VIDATTR(sp, AttrOf(c), GetPair(c));
1537 #endif
1538
1539 /*
1540  * Macros to make additional parameter to implement wgetch_events()
1541  */
1542 #ifdef NCURSES_WGETCH_EVENTS
1543 #define EVENTLIST_0th(param) param
1544 #define EVENTLIST_1st(param) param
1545 #define EVENTLIST_2nd(param) , param
1546 #else
1547 #define EVENTLIST_0th(param) void
1548 #define EVENTLIST_1st(param) /* nothing */
1549 #define EVENTLIST_2nd(param) /* nothing */
1550 #endif
1551
1552 #if NCURSES_EXPANDED && NCURSES_EXT_FUNCS
1553
1554 #undef  toggle_attr_on
1555 #define toggle_attr_on(S,at) _nc_toggle_attr_on(&(S), at)
1556 extern NCURSES_EXPORT(void) _nc_toggle_attr_on (attr_t *, attr_t);
1557
1558 #undef  toggle_attr_off
1559 #define toggle_attr_off(S,at) _nc_toggle_attr_off(&(S), at)
1560 extern NCURSES_EXPORT(void) _nc_toggle_attr_off (attr_t *, attr_t);
1561
1562 #undef  DelCharCost
1563 #define DelCharCost(count) _nc_DelCharCost(count)
1564 extern NCURSES_EXPORT(int) _nc_DelCharCost (int);
1565
1566 #undef  InsCharCost
1567 #define InsCharCost(count) _nc_InsCharCost(count)
1568 extern NCURSES_EXPORT(int) _nc_InsCharCost (int);
1569
1570 #undef  UpdateAttrs
1571 #define UpdateAttrs(c) _nc_UpdateAttrs(c)
1572 extern NCURSES_EXPORT(void) _nc_UpdateAttrs (NCURSES_CH_T);
1573
1574 #else
1575
1576 extern NCURSES_EXPORT(void) _nc_expanded (void);
1577
1578 #endif
1579
1580 #if !NCURSES_EXT_FUNCS
1581 #define set_escdelay(value) ESCDELAY = value
1582 #endif
1583
1584 #if !HAVE_GETCWD
1585 #define getcwd(buf,len) getwd(buf)
1586 #endif
1587
1588 /* charable.c */
1589 #if USE_WIDEC_SUPPORT
1590 extern NCURSES_EXPORT(bool) _nc_is_charable(wchar_t);
1591 extern NCURSES_EXPORT(int) _nc_to_char(wint_t);
1592 extern NCURSES_EXPORT(wint_t) _nc_to_widechar(int);
1593 #endif
1594
1595 /* comp_captab.c */
1596 typedef struct {
1597         short   nte_name;       /* offset of name to hash on */
1598         int     nte_type;       /* BOOLEAN, NUMBER or STRING */
1599         short   nte_index;      /* index of associated variable in its array */
1600         short   nte_link;       /* index in table of next hash, or -1 */
1601 } name_table_data;
1602
1603 typedef struct
1604 {
1605         short   from;
1606         short   to;
1607         short   source;
1608 } alias_table_data;
1609
1610 /* doupdate.c */
1611 #if USE_XMC_SUPPORT
1612 extern NCURSES_EXPORT(void) _nc_do_xmc_glitch (attr_t);
1613 #endif
1614
1615 /* hardscroll.c */
1616 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
1617 extern NCURSES_EXPORT(void) _nc_linedump (void);
1618 #endif
1619
1620 /* lib_acs.c */
1621 extern NCURSES_EXPORT(void) _nc_init_acs (void); /* corresponds to traditional 'init_acs()' */
1622 extern NCURSES_EXPORT(int)  _nc_msec_cost (const char *const, int);  /* used by 'tack' program */
1623
1624 /* lib_addch.c */
1625 #if USE_WIDEC_SUPPORT
1626 NCURSES_EXPORT(int) _nc_build_wch(WINDOW *win, ARG_CH_T ch);
1627 #endif
1628
1629 /* lib_addstr.c */
1630 #if USE_WIDEC_SUPPORT && !defined(USE_TERMLIB)
1631 extern NCURSES_EXPORT(int) _nc_wchstrlen(const cchar_t *);
1632 #endif
1633
1634 /* lib_color.c */
1635 extern NCURSES_EXPORT(bool) _nc_reset_colors(void);
1636
1637 /* lib_getch.c */
1638 extern NCURSES_EXPORT(int) _nc_wgetch(WINDOW *, unsigned long *, int EVENTLIST_2nd(_nc_eventlist *));
1639
1640 /* lib_insch.c */
1641 extern NCURSES_EXPORT(int) _nc_insert_ch(SCREEN *, WINDOW *, chtype);
1642
1643 /* lib_mvcur.c */
1644 #define INFINITY        1000000 /* cost: too high to use */
1645
1646 extern NCURSES_EXPORT(void) _nc_mvcur_init (void);
1647 extern NCURSES_EXPORT(void) _nc_mvcur_resume (void);
1648 extern NCURSES_EXPORT(void) _nc_mvcur_wrap (void);
1649
1650 extern NCURSES_EXPORT(int) _nc_scrolln (int, int, int, int);
1651
1652 extern NCURSES_EXPORT(void) _nc_screen_init (void);
1653 extern NCURSES_EXPORT(void) _nc_screen_resume (void);
1654 extern NCURSES_EXPORT(void) _nc_screen_wrap (void);
1655
1656 /* lib_mouse.c */
1657 extern NCURSES_EXPORT(bool) _nc_has_mouse (SCREEN *);
1658
1659 /* lib_mvcur.c */
1660 #define INFINITY        1000000 /* cost: too high to use */
1661 #define BAUDBYTE        9       /* 9 = 7 bits + 1 parity + 1 stop */
1662
1663 /* lib_setup.c */
1664 extern NCURSES_EXPORT(char *) _nc_get_locale(void);
1665 extern NCURSES_EXPORT(int)    _nc_unicode_locale(void);
1666 extern NCURSES_EXPORT(int)    _nc_locale_breaks_acs(TERMINAL *);
1667 extern NCURSES_EXPORT(int)    _nc_setupterm(NCURSES_CONST char *, int, int *, bool);
1668 extern NCURSES_EXPORT(void)   _nc_get_screensize(SCREEN *, int *, int *);
1669
1670 /* lib_set_term.c */
1671 extern NCURSES_EXPORT(int)    _nc_ripoffline(int, int(*)(WINDOW*, int));
1672
1673 /* lib_tstp.c */
1674 #if USE_SIGWINCH
1675 extern NCURSES_EXPORT(int) _nc_handle_sigwinch(SCREEN *);
1676 #else
1677 #define _nc_handle_sigwinch(a) /* nothing */
1678 #endif
1679
1680 /* lib_wacs.c */
1681 #if USE_WIDEC_SUPPORT
1682 extern NCURSES_EXPORT(void) _nc_init_wacs(void);
1683 #endif
1684
1685 typedef struct {
1686     char *s_head;       /* beginning of the string (may be null) */
1687     char *s_tail;       /* end of the string (may be null) */
1688     size_t s_size;      /* current remaining size available */
1689     size_t s_init;      /* total size available */
1690 } string_desc;
1691
1692 /* strings.c */
1693 extern NCURSES_EXPORT(string_desc *) _nc_str_init (string_desc *, char *, size_t);
1694 extern NCURSES_EXPORT(string_desc *) _nc_str_null (string_desc *, size_t);
1695 extern NCURSES_EXPORT(string_desc *) _nc_str_copy (string_desc *, string_desc *);
1696 extern NCURSES_EXPORT(bool) _nc_safe_strcat (string_desc *, const char *);
1697 extern NCURSES_EXPORT(bool) _nc_safe_strcpy (string_desc *, const char *);
1698
1699 #if !HAVE_STRSTR
1700 #define strstr _nc_strstr
1701 extern NCURSES_EXPORT(char *) _nc_strstr (const char *, const char *);
1702 #endif
1703
1704 /* safe_sprintf.c */
1705 extern NCURSES_EXPORT(char *) _nc_printf_string (const char *, va_list);
1706
1707 /* tries.c */
1708 extern NCURSES_EXPORT(int) _nc_add_to_try (TRIES **, const char *, unsigned);
1709 extern NCURSES_EXPORT(char *) _nc_expand_try (TRIES *, unsigned, int *, size_t);
1710 extern NCURSES_EXPORT(int) _nc_remove_key (TRIES **, unsigned);
1711 extern NCURSES_EXPORT(int) _nc_remove_string (TRIES **, const char *);
1712
1713 /* elsewhere ... */
1714 extern NCURSES_EXPORT(ENTRY *) _nc_delink_entry (ENTRY *, TERMTYPE *);
1715 extern NCURSES_EXPORT(SCREEN *) _nc_screen_of (WINDOW *);
1716 extern NCURSES_EXPORT(WINDOW *) _nc_makenew (int, int, int, int, int);
1717 extern NCURSES_EXPORT(char *) _nc_trace_buf (int, size_t);
1718 extern NCURSES_EXPORT(char *) _nc_trace_bufcat (int, const char *);
1719 extern NCURSES_EXPORT(char *) _nc_tracechar (SCREEN *, int);
1720 extern NCURSES_EXPORT(char *) _nc_tracemouse (SCREEN *, MEVENT const *);
1721 extern NCURSES_EXPORT(int) _nc_access (const char *, int);
1722 extern NCURSES_EXPORT(int) _nc_baudrate (int);
1723 extern NCURSES_EXPORT(int) _nc_freewin (WINDOW *);
1724 extern NCURSES_EXPORT(int) _nc_getenv_num (const char *);
1725 extern NCURSES_EXPORT(int) _nc_keypad (SCREEN *, bool);
1726 extern NCURSES_EXPORT(int) _nc_ospeed (int);
1727 extern NCURSES_EXPORT(int) _nc_outch (int);
1728 extern NCURSES_EXPORT(int) _nc_putp(const char *, const char *);
1729 extern NCURSES_EXPORT(int) _nc_putp_flush(const char *, const char *);
1730 extern NCURSES_EXPORT(int) _nc_read_termcap_entry (const char *const, TERMTYPE *const);
1731 extern NCURSES_EXPORT(int) _nc_setupscreen (int, int, FILE *, bool, int);
1732 extern NCURSES_EXPORT(int) _nc_timed_wait (SCREEN *, int, int, int * EVENTLIST_2nd(_nc_eventlist *));
1733 extern NCURSES_EXPORT(void) _nc_do_color (short, short, bool, NCURSES_OUTC);
1734 extern NCURSES_EXPORT(void) _nc_flush (void);
1735 extern NCURSES_EXPORT(void) _nc_free_and_exit (int) GCC_NORETURN;
1736 extern NCURSES_EXPORT(void) _nc_free_entry (ENTRY *, TERMTYPE *);
1737 extern NCURSES_EXPORT(void) _nc_freeall (void);
1738 extern NCURSES_EXPORT(void) _nc_hash_map (void);
1739 extern NCURSES_EXPORT(void) _nc_init_keytry (SCREEN *);
1740 extern NCURSES_EXPORT(void) _nc_keep_tic_dir (const char *);
1741 extern NCURSES_EXPORT(void) _nc_make_oldhash (int i);
1742 extern NCURSES_EXPORT(void) _nc_scroll_oldhash (int n, int top, int bot);
1743 extern NCURSES_EXPORT(void) _nc_scroll_optimize (void);
1744 extern NCURSES_EXPORT(void) _nc_set_buffer (FILE *, bool);
1745 extern NCURSES_EXPORT(void) _nc_signal_handler (bool);
1746 extern NCURSES_EXPORT(void) _nc_synchook (WINDOW *);
1747 extern NCURSES_EXPORT(void) _nc_trace_tries (TRIES *);
1748
1749 #if NO_LEAKS
1750 extern NCURSES_EXPORT(void) _nc_alloc_entry_leaks(void);
1751 extern NCURSES_EXPORT(void) _nc_captoinfo_leaks(void);
1752 extern NCURSES_EXPORT(void) _nc_codes_leaks(void);
1753 extern NCURSES_EXPORT(void) _nc_comp_captab_leaks(void);
1754 extern NCURSES_EXPORT(void) _nc_comp_scan_leaks(void);
1755 extern NCURSES_EXPORT(void) _nc_keyname_leaks(void);
1756 extern NCURSES_EXPORT(void) _nc_names_leaks(void);
1757 extern NCURSES_EXPORT(void) _nc_tgetent_leaks(void);
1758 #endif
1759
1760 #ifndef USE_TERMLIB
1761 extern NCURSES_EXPORT(NCURSES_CH_T) _nc_render (WINDOW *, NCURSES_CH_T);
1762 extern NCURSES_EXPORT(int) _nc_waddch_nosync (WINDOW *, const NCURSES_CH_T);
1763 extern NCURSES_EXPORT(void) _nc_scroll_window (WINDOW *, int const, NCURSES_SIZE_T const, NCURSES_SIZE_T const, NCURSES_CH_T);
1764 #endif
1765
1766 #if USE_WIDEC_SUPPORT && !defined(USE_TERMLIB)
1767 extern NCURSES_EXPORT(size_t) _nc_wcrtomb (char *, wchar_t, mbstate_t *);
1768 #endif
1769
1770 #if USE_SIZECHANGE
1771 extern NCURSES_EXPORT(void) _nc_update_screensize (SCREEN *);
1772 #endif
1773
1774 #if HAVE_RESIZETERM
1775 extern NCURSES_EXPORT(void) _nc_resize_margins (WINDOW *);
1776 #else
1777 #define _nc_resize_margins(wp) /* nothing */
1778 #endif
1779
1780 #ifdef NCURSES_WGETCH_EVENTS
1781 extern NCURSES_EXPORT(int) _nc_eventlist_timeout(_nc_eventlist *);
1782 #else
1783 #define wgetch_events(win, evl) wgetch(win)
1784 #define wgetnstr_events(win, str, maxlen, evl) wgetnstr(win, str, maxlen)
1785 #endif
1786
1787 /*
1788  * Not everyone has vsscanf(), but we'd like to use it for scanw().
1789  */
1790 #if !HAVE_VSSCANF
1791 extern int vsscanf(const char *str, const char *format, va_list __arg);
1792 #endif
1793
1794 /* scroll indices */
1795 extern NCURSES_EXPORT_VAR(int *) _nc_oldnums;
1796
1797 #define USE_SETBUF_0 0
1798
1799 #define NC_BUFFERED(sp,flag) NCURSES_SP_NAME(_nc_set_buffer)(NCURSES_SP_ARGx sp->_ofp, flag)
1800
1801 #define NC_OUTPUT(sp) ((sp != 0) ? sp->_ofp : stdout)
1802
1803 /*
1804  * On systems with a broken linker, define 'SP' as a function to force the
1805  * linker to pull in the data-only module with 'SP'.
1806  */
1807 #if BROKEN_LINKER
1808 #define SP _nc_screen()
1809 extern NCURSES_EXPORT(SCREEN *) _nc_screen (void);
1810 extern NCURSES_EXPORT(int)      _nc_alloc_screen (void);
1811 extern NCURSES_EXPORT(void)     _nc_set_screen (SCREEN *);
1812 #define CURRENT_SCREEN          _nc_screen()
1813 #else
1814 /* current screen is private data; avoid possible linking conflicts too */
1815 extern NCURSES_EXPORT_VAR(SCREEN *) SP;
1816 #define CURRENT_SCREEN SP
1817 #define _nc_alloc_screen()      ((SP = typeCalloc(SCREEN, 1)) != 0)
1818 #define _nc_set_screen(sp)      SP = sp
1819 #endif
1820
1821 #if NCURSES_SP_FUNCS && 0
1822 #define CURRENT_SCREEN_PRE      (IsPreScreen(CURRENT_SCREEN) ? CURRENT_SCREEN : new_prescr())
1823 #else
1824 #define CURRENT_SCREEN_PRE      CURRENT_SCREEN
1825 #endif
1826
1827 /*
1828  * We don't want to use the lines or columns capabilities internally, because
1829  * if the application is running multiple screens under X, it's quite possible
1830  * they could all have type xterm but have different sizes!  So...
1831  */
1832 #define screen_lines(sp)        (sp)->_lines
1833 #define screen_columns(sp)      (sp)->_columns
1834
1835 extern NCURSES_EXPORT(int) _nc_slk_initialize (WINDOW *, int);
1836 extern NCURSES_EXPORT(int) _nc_format_slks (SCREEN *, int);
1837
1838 /*
1839  * Some constants related to SLK's
1840  */
1841 #define MAX_SKEY_OLD       8    /* count of soft keys */
1842 #define MAX_SKEY_LEN_OLD   8    /* max length of soft key text */
1843 #define MAX_SKEY_PC       12    /* This is what most PC's have */
1844 #define MAX_SKEY_LEN_PC    5
1845
1846 /* Macro to check whether or not we use a standard format */
1847 #define SLK_STDFMT(fmt) (fmt < 3)
1848 /* Macro to determine height of label window */
1849 #define SLK_LINES(fmt)  (SLK_STDFMT(fmt) ? 1 : ((fmt) - 2))
1850
1851 #define MAX_SKEY(fmt)     (SLK_STDFMT(fmt)? MAX_SKEY_OLD : MAX_SKEY_PC)
1852 #define MAX_SKEY_LEN(fmt) (SLK_STDFMT(fmt)? MAX_SKEY_LEN_OLD : MAX_SKEY_LEN_PC)
1853
1854 /*
1855  * Common error messages
1856  */
1857 #define MSG_NO_MEMORY "Out of memory"
1858 #define MSG_NO_INPUTS "Premature EOF"
1859
1860 extern NCURSES_EXPORT(int) _nc_set_tty_mode(TTY *);
1861 extern NCURSES_EXPORT(int) _nc_get_tty_mode(TTY *);
1862
1863 /* timed_wait flag definitions */
1864 #define TW_NONE    0
1865 #define TW_INPUT   1
1866 #define TW_MOUSE   2
1867 #define TW_ANY     (TW_INPUT | TW_MOUSE)
1868 #define TW_EVENT   4
1869
1870 #define SetSafeOutcWrapper(outc)            \
1871     SCREEN* sp = CURRENT_SCREEN;            \
1872     if (sp==0) {                            \
1873         struct screen dummy;                \
1874         sp = &dummy;                        \
1875         memset(sp,0,sizeof(struct screen)); \
1876         sp->_outch = _nc_outc_wrapper;      \
1877     }\
1878     sp->jump = outc
1879
1880 struct DriverTCB; /* Terminal Control Block forward declaration */
1881 typedef void* TERM_HANDLE;
1882
1883 typedef struct _termInfo
1884 {
1885     bool caninit;
1886
1887     bool hascolor;
1888     bool initcolor;
1889     bool canchange;
1890
1891     int  tabsize;
1892
1893     int  maxcolors;
1894     int  maxpairs;
1895     int  nocolorvideo;
1896
1897     int  numlabels;
1898     int  labelwidth;
1899     int  labelheight;
1900
1901     const color_t* defaultPalette;
1902 } TerminalInfo;
1903
1904 typedef struct term_driver {
1905     bool   isTerminfo;
1906     bool   (*CanHandle)(struct DriverTCB*,const char*,int*);
1907     void   (*init)(struct DriverTCB*);
1908     void   (*release)(struct DriverTCB*);
1909     int    (*size)(struct DriverTCB*, int* Line, int *Cols);
1910     int    (*sgmode)(struct DriverTCB*, bool setFlag, TTY*);
1911     chtype (*conattr)(struct DriverTCB*);
1912     int    (*hwcur)(struct DriverTCB*, int yold, int xold, int y, int x);
1913     int    (*mode)(struct DriverTCB*, bool progFlag, bool defFlag);
1914     bool   (*rescol)(struct DriverTCB*);
1915     bool   (*rescolors)(struct DriverTCB*);
1916     void   (*color)(struct DriverTCB*,bool fore, int color, int(*)(SCREEN*,int));
1917     int    (*doBeepOrFlash)(struct DriverTCB*, bool);
1918     void   (*initpair)(struct DriverTCB*,short,short,short);
1919     void   (*initcolor)(struct DriverTCB*,short,short,short,short);
1920     void   (*docolor)(struct DriverTCB*,short,short,bool,int(*)(SCREEN*,int));
1921     void   (*initmouse)(struct DriverTCB*);
1922     void   (*setfilter)(struct DriverTCB*);
1923     void   (*hwlabel)(struct DriverTCB*,int,char*);
1924     void   (*hwlabelOnOff)(struct DriverTCB*,bool);
1925     int    (*update)(struct DriverTCB*);
1926     int    (*defaultcolors)(struct DriverTCB*,int,int);
1927     int    (*print)(struct DriverTCB*,char*,int);
1928     int    (*getsize)(struct DriverTCB*,int*,int*);
1929     int    (*setsize)(struct DriverTCB*,int,int);
1930     void   (*initacs)(struct DriverTCB*,chtype*,chtype*);
1931     void   (*scinit)(SCREEN *);
1932     void   (*scexit)(SCREEN *);
1933     int    (*twait)(struct DriverTCB*,int,int,int* EVENTLIST_2nd(_nc_eventlist*));
1934     int    (*read)(struct DriverTCB*,int*);
1935     int    (*nap)(struct DriverTCB*,int);
1936     int    (*kpad)(struct DriverTCB*, bool);
1937     int    (*kyOk)(struct DriverTCB*, int, bool);
1938     bool   (*kyExist)(struct DriverTCB*, int);
1939 } TERM_DRIVER;
1940
1941
1942 typedef struct DriverTCB
1943 {
1944     TERMINAL      term;   /* needs to be the first Element !!! */
1945     TERM_HANDLE   inp;    /* The input handle of the Terminal */
1946     TERM_HANDLE   out;    /* The output handle of the Terminal in shell mode */
1947     TERM_HANDLE   hdl;    /* The output handle of the Terminal in prog  mode */
1948     TERM_DRIVER*  drv;    /* The driver for that Terminal */
1949     SCREEN*       csp;    /* The screen that owns that Terminal */
1950     TerminalInfo  info;   /* Driver independent core capabilities of the Terminal */
1951     void*         prop;   /* Driver dependent property storage to be used by the Driver */
1952     long          magic;
1953 } TERMINAL_CONTROL_BLOCK;
1954
1955 #define NCDRV_MAGIC(id) (0x47110000 | (id&0xffff))
1956 #define NCDRV_TINFO      0x01
1957 #define NCDRV_WINCONSOLE 0x02
1958
1959 #define TCBOf(sp)    ((TERMINAL_CONTROL_BLOCK*)(TerminalOf(sp)))
1960 #define InfoOf(sp)   TCBOf(sp)->info
1961 #define CallDriver(sp,method)                        TCBOf(sp)->drv->method(TCBOf(sp))
1962 #define CallDriver_1(sp,method,arg1)                 TCBOf(sp)->drv->method(TCBOf(sp),arg1)
1963 #define CallDriver_2(sp,method,arg1,arg2)            TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2)
1964 #define CallDriver_3(sp,method,arg1,arg2,arg3)       TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3)
1965 #define CallDriver_4(sp,method,arg1,arg2,arg3,arg4)  TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3,arg4)
1966
1967 extern NCURSES_EXPORT_VAR(const color_t*) _nc_cga_palette;
1968 extern NCURSES_EXPORT_VAR(const color_t*) _nc_hls_palette;
1969
1970 #ifdef USE_TERM_DRIVER
1971 extern NCURSES_EXPORT(int)      _nc_tinfo_has_key(SCREEN*, int);
1972 extern NCURSES_EXPORT(int)      _nc_tinfo_doupdate(SCREEN *sp);
1973 extern NCURSES_EXPORT(int)      _nc_tinfo_mvcur(SCREEN*,int,int,int,int);
1974 extern NCURSES_EXPORT(int)      _nc_get_driver(TERMINAL_CONTROL_BLOCK*, const char*, int*);
1975 #endif
1976
1977 #ifdef __MINGW32__
1978 #include <nc_mingw.h>
1979 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_WIN_DRIVER;
1980 #endif
1981 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_TINFO_DRIVER;
1982
1983 #ifdef USE_TERM_DRIVER
1984 #define IsTermInfo(sp)       (TCBOf(sp) && ((TCBOf(sp)->drv->isTerminfo)))
1985 #else
1986 #define IsTermInfo(sp)       TRUE
1987 #endif
1988
1989 #define HasTInfoTerminal(sp) ((0 != TerminalOf(sp)) && IsTermInfo(sp))
1990 #define IsValidTIScreen(sp)  (HasTInfoTerminal(sp))
1991
1992 /*
1993  * Exported entrypoints beyond the published API
1994  */
1995 #if NCURSES_SP_FUNCS
1996 extern NCURSES_EXPORT(WINDOW *) _nc_curscr_of(SCREEN*);
1997 extern NCURSES_EXPORT(WINDOW *) _nc_newscr_of(SCREEN*);
1998 extern NCURSES_EXPORT(WINDOW *) _nc_stdscr_of(SCREEN*);
1999 extern NCURSES_EXPORT(int)      _nc_outc_wrapper(SCREEN*,int);
2000
2001 #if USE_REENTRANT
2002 extern NCURSES_EXPORT(char *)    NCURSES_SP_NAME(_nc_ttytype)(SCREEN*);
2003 extern NCURSES_EXPORT(int)       NCURSES_SP_NAME(_nc_TABSIZE)(SCREEN*);
2004 extern NCURSES_EXPORT(char *)    NCURSES_SP_NAME(longname)(SCREEN*);
2005 #endif
2006
2007 #if NCURSES_EXT_FUNCS
2008 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tabsize)(SCREEN*, int);
2009 #endif
2010
2011 /*
2012  * We put the safe versions of various calls here as they are not published
2013  * part of the API up to now
2014  */
2015 extern NCURSES_EXPORT(SCREEN*)  _nc_SP(void);
2016
2017 extern NCURSES_EXPORT(TERMINAL*) NCURSES_SP_NAME(_nc_set_curterm)(SCREEN*,TERMINAL*);
2018 extern NCURSES_EXPORT(TERMINAL*) NCURSES_SP_NAME(cur_term)(SCREEN *sp);
2019 extern NCURSES_EXPORT(WINDOW *) NCURSES_SP_NAME(_nc_makenew) (SCREEN*, int, int, int, int, int);
2020 extern NCURSES_EXPORT(bool)     NCURSES_SP_NAME(_nc_reset_colors)(SCREEN*);
2021 extern NCURSES_EXPORT(char *)   NCURSES_SP_NAME(_nc_printf_string)(SCREEN*, const char *, va_list);
2022 extern NCURSES_EXPORT(chtype)   NCURSES_SP_NAME(_nc_acs_char)(SCREEN*,int);
2023 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_curs_set)(SCREEN*,int);
2024 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_get_tty_mode)(SCREEN*,TTY*);
2025 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_mcprint)(SCREEN*,char*, int);
2026 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_msec_cost)(SCREEN*, const char *, int);
2027 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_outch)(SCREEN*, int);
2028 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp)(SCREEN*, const char *, const char*);
2029 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp_flush)(SCREEN*, const char *, const char *);
2030 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_resetty)(SCREEN*);
2031 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_resize_term)(SCREEN*,int,int);
2032 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_ripoffline)(SCREEN*, int, int (*)(WINDOW *,int));
2033 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_savetty)(SCREEN*);
2034 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scr_init)(SCREEN*,const char*);
2035 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scr_restore)(SCREEN*, const char*);
2036 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scrolln)(SCREEN*, int, int, int, int);
2037 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tty_mode)(SCREEN*, TTY*);
2038 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_setupscreen)(SCREEN**, int, int, FILE *, bool, int);
2039 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_tgetent)(SCREEN*,char*,const char *);
2040 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_tigetnum)(SCREEN*,NCURSES_CONST char*);
2041 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_vid_attr)(SCREEN *, attr_t, short, void *);
2042 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_vidputs)(SCREEN*,chtype,int(*) (SCREEN*, int));
2043 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_color)(SCREEN*, short, short, bool, NCURSES_SP_OUTC);
2044 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_xmc_glitch)(SCREEN*, attr_t);
2045 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_flush)(SCREEN*);
2046 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_free_and_exit)(SCREEN*, int) GCC_NORETURN;
2047 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_freeall)(SCREEN*);
2048 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_hash_map)(SCREEN*);
2049 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_init_acs)(SCREEN*);
2050 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_make_oldhash)(SCREEN*, int i);
2051 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_init)(SCREEN*);
2052 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_resume)(SCREEN*);
2053 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_wrap)(SCREEN*);
2054 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_init)(SCREEN*);
2055 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_resume)(SCREEN*);
2056 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_wrap)(SCREEN*);
2057 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_oldhash)(SCREEN*, int n, int top, int bot);
2058 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_optimize)(SCREEN*);
2059 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_set_buffer)(SCREEN*, FILE *, bool);
2060
2061 extern NCURSES_EXPORT(void)     _nc_cookie_init(SCREEN *sp);
2062
2063 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
2064 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_linedump)(SCREEN*);
2065 #endif
2066
2067 #if USE_WIDEC_SUPPORT
2068 extern NCURSES_EXPORT(wchar_t *) NCURSES_SP_NAME(_nc_wunctrl)(SCREEN*, cchar_t *);
2069 #endif
2070
2071 #endif /* NCURSES_SP_FUNCS */
2072
2073 #if NCURSES_SP_FUNCS
2074
2075 #define safe_keyname NCURSES_SP_NAME(keyname)
2076 #define safe_unctrl  NCURSES_SP_NAME(unctrl)
2077 #define safe_ungetch NCURSES_SP_NAME(ungetch)
2078
2079 #else
2080
2081 #define safe_keyname _nc_keyname
2082 #define safe_unctrl  _nc_unctrl
2083 #define safe_ungetch _nc_ungetch
2084
2085 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_keyname (SCREEN *, int);
2086 extern NCURSES_EXPORT(int) _nc_ungetch (SCREEN *, int);
2087 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_unctrl (SCREEN *, chtype);
2088
2089 #endif
2090
2091 #ifdef __cplusplus
2092 }
2093 #endif
2094
2095 #endif /* CURSES_PRIV_H */