blob: fda6deada2a7c0e2177b87aebb16c8bed3d1ef68 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2020-2023,2024 Thomas E. Dickey *
3 * Copyright 1998-2016,2017 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304 * *
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> *
Steve Kondikae271bc2015-11-15 02:50:53 +010033 * and: Thomas E. Dickey 1998-on *
34 * and: Juergen Pfeifer 2009 *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053035 ****************************************************************************/
36
37/*
38 * raw.c
39 *
40 * Routines:
41 * raw()
42 * cbreak()
43 * noraw()
44 * nocbreak()
45 * qiflush()
46 * noqiflush()
47 * intrflush()
48 *
49 */
50
51#include <curses.priv.h>
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053052
micky3879b9f5e72025-07-08 18:04:53 -040053MODULE_ID("$Id: lib_raw.c,v 1.30 2024/03/30 15:54:17 tom Exp $")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053054
55#if HAVE_SYS_TERMIO_H
56#include <sys/termio.h> /* needed for ISC */
57#endif
58
59#ifdef __EMX__
60#include <io.h>
Steve Kondikae271bc2015-11-15 02:50:53 +010061#define _nc_setmode(mode) setmode(SP_PARM->_ifd, mode)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053062#else
63#define _nc_setmode(mode) /* nothing */
64#endif
65
Steve Kondikae271bc2015-11-15 02:50:53 +010066#if USE_KLIBC_KBD
67#define INCL_KBD
68#include <os2.h>
69#endif
70
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053071#define COOKED_INPUT (IXON|BRKINT|PARMRK)
72
73#ifdef TRACE
74#define BEFORE(N) if (USE_TRACEF(TRACE_BITS)) _nc_locked_tracef("%s before bits: %s", N, _nc_tracebits())
75#define AFTER(N) if (USE_TRACEF(TRACE_BITS)) _nc_locked_tracef("%s after bits: %s", N, _nc_tracebits())
76#else
77#define BEFORE(s)
78#define AFTER(s)
79#endif /* TRACE */
80
81NCURSES_EXPORT(int)
Steve Kondikae271bc2015-11-15 02:50:53 +010082NCURSES_SP_NAME(raw) (NCURSES_SP_DCL0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053083{
84 int result = ERR;
Steve Kondikae271bc2015-11-15 02:50:53 +010085 TERMINAL *termp;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053086
Steve Kondikae271bc2015-11-15 02:50:53 +010087 T((T_CALLED("raw(%p)"), (void *) SP_PARM));
88 if ((termp = TerminalOf(SP_PARM)) != 0) {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053089 TTY buf;
90
91 BEFORE("raw");
92 _nc_setmode(O_BINARY);
93
Steve Kondikae271bc2015-11-15 02:50:53 +010094 buf = termp->Nttyb;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053095#ifdef TERMIOS
Steve Kondikae271bc2015-11-15 02:50:53 +010096 buf.c_lflag &= (unsigned) ~(ICANON | ISIG | IEXTEN);
97 buf.c_iflag &= (unsigned) ~(COOKED_INPUT);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053098 buf.c_cc[VMIN] = 1;
99 buf.c_cc[VTIME] = 0;
micky3879b9f5e72025-07-08 18:04:53 -0400100#elif defined(EXP_WIN32_DRIVER)
101 buf.dwFlagIn &= (unsigned long) ~CONMODE_NORAW;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530102#else
103 buf.sg_flags |= RAW;
104#endif
Steve Kondikae271bc2015-11-15 02:50:53 +0100105 result = NCURSES_SP_NAME(_nc_set_tty_mode) (NCURSES_SP_ARGx &buf);
106 if (result == OK) {
107#if USE_KLIBC_KBD
108 KBDINFO kbdinfo;
109
110 kbdinfo.cb = sizeof(kbdinfo);
111 KbdGetStatus(&kbdinfo, 0);
112
113 kbdinfo.cb = sizeof(kbdinfo);
114 kbdinfo.fsMask &= ~KEYBOARD_ASCII_MODE;
115 kbdinfo.fsMask |= KEYBOARD_BINARY_MODE;
116 KbdSetStatus(&kbdinfo, 0);
117#endif
micky3879b9f5e72025-07-08 18:04:53 -0400118 if (SP_PARM) {
119 IsRaw(SP_PARM) = TRUE;
120 IsCbreak(SP_PARM) = 1;
121 }
Steve Kondikae271bc2015-11-15 02:50:53 +0100122 termp->Nttyb = buf;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530123 }
124 AFTER("raw");
125 }
126 returnCode(result);
127}
128
Steve Kondikae271bc2015-11-15 02:50:53 +0100129#if NCURSES_SP_FUNCS
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530130NCURSES_EXPORT(int)
Steve Kondikae271bc2015-11-15 02:50:53 +0100131raw(void)
132{
133 return NCURSES_SP_NAME(raw) (CURRENT_SCREEN);
134}
135#endif
136
137NCURSES_EXPORT(int)
138NCURSES_SP_NAME(cbreak) (NCURSES_SP_DCL0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530139{
140 int result = ERR;
Steve Kondikae271bc2015-11-15 02:50:53 +0100141 TERMINAL *termp;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530142
Steve Kondikae271bc2015-11-15 02:50:53 +0100143 T((T_CALLED("cbreak(%p)"), (void *) SP_PARM));
144 if ((termp = TerminalOf(SP_PARM)) != 0) {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530145 TTY buf;
146
147 BEFORE("cbreak");
148 _nc_setmode(O_BINARY);
149
Steve Kondikae271bc2015-11-15 02:50:53 +0100150 buf = termp->Nttyb;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530151#ifdef TERMIOS
Steve Kondikae271bc2015-11-15 02:50:53 +0100152 buf.c_lflag &= (unsigned) ~ICANON;
153 buf.c_iflag &= (unsigned) ~ICRNL;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530154 buf.c_cc[VMIN] = 1;
155 buf.c_cc[VTIME] = 0;
micky3879b9f5e72025-07-08 18:04:53 -0400156#elif defined(EXP_WIN32_DRIVER)
157 buf.dwFlagIn |= CONMODE_NORAW;
158 buf.dwFlagIn &= (unsigned long) ~CONMODE_NOCBREAK;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530159#else
160 buf.sg_flags |= CBREAK;
161#endif
Steve Kondikae271bc2015-11-15 02:50:53 +0100162 result = NCURSES_SP_NAME(_nc_set_tty_mode) (NCURSES_SP_ARGx &buf);
163 if (result == OK) {
micky3879b9f5e72025-07-08 18:04:53 -0400164 if (SP_PARM) {
165 IsCbreak(SP_PARM) = 1;
166 }
Steve Kondikae271bc2015-11-15 02:50:53 +0100167 termp->Nttyb = buf;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530168 }
169 AFTER("cbreak");
170 }
171 returnCode(result);
172}
173
Steve Kondikae271bc2015-11-15 02:50:53 +0100174#if NCURSES_SP_FUNCS
175NCURSES_EXPORT(int)
176cbreak(void)
177{
178 return NCURSES_SP_NAME(cbreak) (CURRENT_SCREEN);
179}
180#endif
181
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530182/*
183 * Note:
184 * this implementation may be wrong. See the comment under intrflush().
185 */
186NCURSES_EXPORT(void)
Steve Kondikae271bc2015-11-15 02:50:53 +0100187NCURSES_SP_NAME(qiflush) (NCURSES_SP_DCL0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530188{
Steve Kondikae271bc2015-11-15 02:50:53 +0100189 TERMINAL *termp;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530190
Steve Kondikae271bc2015-11-15 02:50:53 +0100191 T((T_CALLED("qiflush(%p)"), (void *) SP_PARM));
192 if ((termp = TerminalOf(SP_PARM)) != 0) {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530193 TTY buf;
micky3879b9f5e72025-07-08 18:04:53 -0400194 int result;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530195
196 BEFORE("qiflush");
Steve Kondikae271bc2015-11-15 02:50:53 +0100197 buf = termp->Nttyb;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530198#ifdef TERMIOS
Steve Kondikae271bc2015-11-15 02:50:53 +0100199 buf.c_lflag &= (unsigned) ~(NOFLSH);
200 result = NCURSES_SP_NAME(_nc_set_tty_mode) (NCURSES_SP_ARGx &buf);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530201#else
micky3879b9f5e72025-07-08 18:04:53 -0400202 result = ERR;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530203 /* FIXME */
204#endif
205 if (result == OK)
Steve Kondikae271bc2015-11-15 02:50:53 +0100206 termp->Nttyb = buf;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530207 AFTER("qiflush");
208 }
209 returnVoid;
210}
211
Steve Kondikae271bc2015-11-15 02:50:53 +0100212#if NCURSES_SP_FUNCS
213NCURSES_EXPORT(void)
214qiflush(void)
215{
216 NCURSES_SP_NAME(qiflush) (CURRENT_SCREEN);
217}
218#endif
219
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530220NCURSES_EXPORT(int)
Steve Kondikae271bc2015-11-15 02:50:53 +0100221NCURSES_SP_NAME(noraw) (NCURSES_SP_DCL0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530222{
223 int result = ERR;
Steve Kondikae271bc2015-11-15 02:50:53 +0100224 TERMINAL *termp;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530225
Steve Kondikae271bc2015-11-15 02:50:53 +0100226 T((T_CALLED("noraw(%p)"), (void *) SP_PARM));
227 if ((termp = TerminalOf(SP_PARM)) != 0) {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530228 TTY buf;
229
230 BEFORE("noraw");
231 _nc_setmode(O_TEXT);
232
Steve Kondikae271bc2015-11-15 02:50:53 +0100233 buf = termp->Nttyb;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530234#ifdef TERMIOS
235 buf.c_lflag |= ISIG | ICANON |
Steve Kondikae271bc2015-11-15 02:50:53 +0100236 (termp->Ottyb.c_lflag & IEXTEN);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530237 buf.c_iflag |= COOKED_INPUT;
micky3879b9f5e72025-07-08 18:04:53 -0400238#elif defined(EXP_WIN32_DRIVER)
239 buf.dwFlagIn |= CONMODE_NORAW;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530240#else
241 buf.sg_flags &= ~(RAW | CBREAK);
242#endif
Steve Kondikae271bc2015-11-15 02:50:53 +0100243 result = NCURSES_SP_NAME(_nc_set_tty_mode) (NCURSES_SP_ARGx &buf);
244 if (result == OK) {
245#if USE_KLIBC_KBD
246 KBDINFO kbdinfo;
247
248 kbdinfo.cb = sizeof(kbdinfo);
249 KbdGetStatus(&kbdinfo, 0);
250
251 kbdinfo.cb = sizeof(kbdinfo);
252 kbdinfo.fsMask &= ~KEYBOARD_BINARY_MODE;
253 kbdinfo.fsMask |= KEYBOARD_ASCII_MODE;
254 KbdSetStatus(&kbdinfo, 0);
255#endif
micky3879b9f5e72025-07-08 18:04:53 -0400256 if (SP_PARM) {
257 IsRaw(SP_PARM) = FALSE;
258 IsCbreak(SP_PARM) = 0;
259 }
Steve Kondikae271bc2015-11-15 02:50:53 +0100260 termp->Nttyb = buf;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530261 }
262 AFTER("noraw");
263 }
264 returnCode(result);
265}
266
Steve Kondikae271bc2015-11-15 02:50:53 +0100267#if NCURSES_SP_FUNCS
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530268NCURSES_EXPORT(int)
Steve Kondikae271bc2015-11-15 02:50:53 +0100269noraw(void)
270{
271 return NCURSES_SP_NAME(noraw) (CURRENT_SCREEN);
272}
273#endif
274
275NCURSES_EXPORT(int)
276NCURSES_SP_NAME(nocbreak) (NCURSES_SP_DCL0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530277{
278 int result = ERR;
Steve Kondikae271bc2015-11-15 02:50:53 +0100279 TERMINAL *termp;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530280
Steve Kondikae271bc2015-11-15 02:50:53 +0100281 T((T_CALLED("nocbreak(%p)"), (void *) SP_PARM));
282 if ((termp = TerminalOf(SP_PARM)) != 0) {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530283 TTY buf;
284
285 BEFORE("nocbreak");
286 _nc_setmode(O_TEXT);
287
Steve Kondikae271bc2015-11-15 02:50:53 +0100288 buf = termp->Nttyb;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530289#ifdef TERMIOS
290 buf.c_lflag |= ICANON;
291 buf.c_iflag |= ICRNL;
micky3879b9f5e72025-07-08 18:04:53 -0400292#elif defined(EXP_WIN32_DRIVER)
293 buf.dwFlagIn |= (CONMODE_NOCBREAK | CONMODE_NORAW);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530294#else
295 buf.sg_flags &= ~CBREAK;
296#endif
Steve Kondikae271bc2015-11-15 02:50:53 +0100297 result = NCURSES_SP_NAME(_nc_set_tty_mode) (NCURSES_SP_ARGx &buf);
298 if (result == OK) {
micky3879b9f5e72025-07-08 18:04:53 -0400299 if (SP_PARM) {
300 IsCbreak(SP_PARM) = 0;
301 }
Steve Kondikae271bc2015-11-15 02:50:53 +0100302 termp->Nttyb = buf;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530303 }
304 AFTER("nocbreak");
305 }
306 returnCode(result);
307}
308
Steve Kondikae271bc2015-11-15 02:50:53 +0100309#if NCURSES_SP_FUNCS
310NCURSES_EXPORT(int)
311nocbreak(void)
312{
313 return NCURSES_SP_NAME(nocbreak) (CURRENT_SCREEN);
314}
315#endif
316
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530317NCURSES_EXPORT(void)
Steve Kondikae271bc2015-11-15 02:50:53 +0100318NCURSES_SP_NAME(noqiflush) (NCURSES_SP_DCL0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530319{
Steve Kondikae271bc2015-11-15 02:50:53 +0100320 TERMINAL *termp;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530321
Steve Kondikae271bc2015-11-15 02:50:53 +0100322 T((T_CALLED("noqiflush(%p)"), (void *) SP_PARM));
323 if ((termp = TerminalOf(SP_PARM)) != 0) {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530324 TTY buf;
micky3879b9f5e72025-07-08 18:04:53 -0400325 int result;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530326
327 BEFORE("noqiflush");
Steve Kondikae271bc2015-11-15 02:50:53 +0100328 buf = termp->Nttyb;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530329#ifdef TERMIOS
330 buf.c_lflag |= NOFLSH;
Steve Kondikae271bc2015-11-15 02:50:53 +0100331 result = NCURSES_SP_NAME(_nc_set_tty_mode) (NCURSES_SP_ARGx &buf);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530332#else
333 /* FIXME */
micky3879b9f5e72025-07-08 18:04:53 -0400334 result = ERR;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530335#endif
Steve Kondikae271bc2015-11-15 02:50:53 +0100336 if (result == OK)
337 termp->Nttyb = buf;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530338 AFTER("noqiflush");
339 }
340 returnVoid;
341}
342
Steve Kondikae271bc2015-11-15 02:50:53 +0100343#if NCURSES_SP_FUNCS
344NCURSES_EXPORT(void)
345noqiflush(void)
346{
347 NCURSES_SP_NAME(noqiflush) (CURRENT_SCREEN);
348}
349#endif
350
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530351/*
352 * This call does the same thing as the qiflush()/noqiflush() pair. We know
353 * for certain that SVr3 intrflush() tweaks the NOFLSH bit; on the other hand,
354 * the match (in the SVr4 man pages) between the language describing NOFLSH in
355 * termio(7) and the language describing qiflush()/noqiflush() in
356 * curs_inopts(3x) is too exact to be coincidence.
357 */
358NCURSES_EXPORT(int)
Steve Kondikae271bc2015-11-15 02:50:53 +0100359NCURSES_SP_NAME(intrflush) (NCURSES_SP_DCLx WINDOW *win GCC_UNUSED, bool flag)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530360{
361 int result = ERR;
Steve Kondikae271bc2015-11-15 02:50:53 +0100362 TERMINAL *termp;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530363
Steve Kondikae271bc2015-11-15 02:50:53 +0100364 T((T_CALLED("intrflush(%p,%d)"), (void *) SP_PARM, flag));
365 if (SP_PARM == 0)
366 returnCode(ERR);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530367
Steve Kondikae271bc2015-11-15 02:50:53 +0100368 if ((termp = TerminalOf(SP_PARM)) != 0) {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530369 TTY buf;
370
371 BEFORE("intrflush");
Steve Kondikae271bc2015-11-15 02:50:53 +0100372 buf = termp->Nttyb;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530373#ifdef TERMIOS
374 if (flag)
Steve Kondikae271bc2015-11-15 02:50:53 +0100375 buf.c_lflag &= (unsigned) ~(NOFLSH);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530376 else
377 buf.c_lflag |= (NOFLSH);
Steve Kondikae271bc2015-11-15 02:50:53 +0100378 result = NCURSES_SP_NAME(_nc_set_tty_mode) (NCURSES_SP_ARGx &buf);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530379#else
380 /* FIXME */
381#endif
382 if (result == OK) {
Steve Kondikae271bc2015-11-15 02:50:53 +0100383 termp->Nttyb = buf;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530384 }
385 AFTER("intrflush");
386 }
387 returnCode(result);
388}
Steve Kondikae271bc2015-11-15 02:50:53 +0100389
390#if NCURSES_SP_FUNCS
391NCURSES_EXPORT(int)
392intrflush(WINDOW *win GCC_UNUSED, bool flag)
393{
394 return NCURSES_SP_NAME(intrflush) (CURRENT_SCREEN, win, flag);
395}
396#endif
micky3879b9f5e72025-07-08 18:04:53 -0400397
398#if NCURSES_EXT_FUNCS
399/* *INDENT-OFF* */
400
401/*
402 * SCREEN is always opaque, but nl/raw/cbreak/echo set properties in it.
403 * As an extension, provide a way to query the properties.
404 *
405 * There are other properties which could be queried, e.g., filter, keypad,
406 * use_env, use_meta, but these particular properties are saved/restored within
407 * the wgetnstr() and wgetn_wstr() functions, which requires that the higher
408 * level curses library knows about the internal state of the lower level
409 * terminfo library.
410 */
411
412#define is_TEST(show,what) \
413 NCURSES_EXPORT(int) \
414 NCURSES_SP_NAME(show) (NCURSES_SP_DCL0) \
415 { \
416 return ((SP_PARM != NULL) ? (what(SP_PARM) ? 1 : 0) : -1); \
417 }
418
419is_TEST(is_nl, IsNl)
420is_TEST(is_raw, IsRaw)
421is_TEST(is_cbreak, IsCbreak)
422is_TEST(is_echo, IsEcho)
423
424#if NCURSES_SP_FUNCS
425#undef is_TEST
426#define is_TEST(show) \
427 NCURSES_EXPORT(int) \
428 show(void) \
429 { \
430 return NCURSES_SP_NAME(show) (CURRENT_SCREEN); \
431 }
432is_TEST(is_nl)
433is_TEST(is_raw)
434is_TEST(is_cbreak)
435is_TEST(is_echo)
436#endif
437
438/* *INDENT-ON* */
439#endif /* extensions */