blob: dbf535db4b3f36b9217955923d9ab046ab0c1de0 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2018-2022,2023 Thomas E. Dickey *
3 * Copyright 2001-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/****************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +010031 * Author: Thomas E. Dickey 2001-on *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053032 ****************************************************************************/
33/* LINTLIBRARY */
34
35/* ./tty/hardscroll.c */
36
37#include <curses.priv.h>
38
39#undef _nc_oldnums
40int *_nc_oldnums;
41
Steve Kondikae271bc2015-11-15 02:50:53 +010042#undef _nc_scroll_optimize_sp
43void _nc_scroll_optimize_sp(
44 SCREEN *sp)
45 { /* void */ }
46
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053047#undef _nc_scroll_optimize
48void _nc_scroll_optimize(void)
49 { /* void */ }
50
Steve Kondikae271bc2015-11-15 02:50:53 +010051#undef _nc_linedump_sp
52void _nc_linedump_sp(
53 SCREEN *sp)
54 { /* void */ }
55
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053056#undef _nc_linedump
57void _nc_linedump(void)
58 { /* void */ }
59
60/* ./tty/hashmap.c */
61
Steve Kondikae271bc2015-11-15 02:50:53 +010062#undef _nc_hash_map_sp
63void _nc_hash_map_sp(
64 SCREEN *sp)
65 { /* void */ }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053066
67#undef _nc_hash_map
68void _nc_hash_map(void)
69 { /* void */ }
70
Steve Kondikae271bc2015-11-15 02:50:53 +010071#undef _nc_make_oldhash_sp
72void _nc_make_oldhash_sp(
micky3879b9f5e72025-07-08 18:04:53 -040073 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +010074 int i)
75 { /* void */ }
76
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053077#undef _nc_make_oldhash
78void _nc_make_oldhash(
79 int i)
80 { /* void */ }
81
Steve Kondikae271bc2015-11-15 02:50:53 +010082#undef _nc_scroll_oldhash_sp
83void _nc_scroll_oldhash_sp(
micky3879b9f5e72025-07-08 18:04:53 -040084 SCREEN *sp,
85 int n,
86 int top,
Steve Kondikae271bc2015-11-15 02:50:53 +010087 int bot)
88 { /* void */ }
89
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053090#undef _nc_scroll_oldhash
91void _nc_scroll_oldhash(
micky3879b9f5e72025-07-08 18:04:53 -040092 int n,
93 int top,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053094 int bot)
95 { /* void */ }
96
97/* ./base/lib_addch.c */
98
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053099#undef _nc_render
100cchar_t _nc_render(
micky3879b9f5e72025-07-08 18:04:53 -0400101 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530102 cchar_t ch)
103 { return(*(cchar_t *)0); }
104
105#undef _nc_build_wch
106int _nc_build_wch(
micky3879b9f5e72025-07-08 18:04:53 -0400107 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530108 cchar_t *ch)
109 { return(*(int *)0); }
110
111#undef _nc_waddch_nosync
112int _nc_waddch_nosync(
micky3879b9f5e72025-07-08 18:04:53 -0400113 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530114 const cchar_t c)
115 { return(*(int *)0); }
116
117#undef waddch
118int waddch(
micky3879b9f5e72025-07-08 18:04:53 -0400119 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530120 const chtype ch)
121 { return(*(int *)0); }
122
123#undef wechochar
124int wechochar(
micky3879b9f5e72025-07-08 18:04:53 -0400125 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530126 const chtype ch)
127 { return(*(int *)0); }
128
129/* ./base/lib_addstr.c */
130
131#undef waddnstr
132int waddnstr(
micky3879b9f5e72025-07-08 18:04:53 -0400133 WINDOW *win,
134 const char *astr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530135 int n)
136 { return(*(int *)0); }
137
138#undef waddchnstr
139int waddchnstr(
micky3879b9f5e72025-07-08 18:04:53 -0400140 WINDOW *win,
141 const chtype *astr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530142 int n)
143 { return(*(int *)0); }
144
145#undef _nc_wchstrlen
146int _nc_wchstrlen(
147 const cchar_t *s)
148 { return(*(int *)0); }
149
150#undef wadd_wchnstr
151int wadd_wchnstr(
micky3879b9f5e72025-07-08 18:04:53 -0400152 WINDOW *win,
153 const cchar_t *astr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530154 int n)
155 { return(*(int *)0); }
156
157#undef waddnwstr
158int waddnwstr(
micky3879b9f5e72025-07-08 18:04:53 -0400159 WINDOW *win,
160 const wchar_t *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530161 int n)
162 { return(*(int *)0); }
163
164/* ./base/lib_beep.c */
165
Steve Kondikae271bc2015-11-15 02:50:53 +0100166#undef beep_sp
167int beep_sp(
168 SCREEN *sp)
169 { return(*(int *)0); }
170
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530171#undef beep
172int beep(void)
173 { return(*(int *)0); }
174
175/* ./base/lib_bkgd.c */
176
177#undef wbkgrndset
178void wbkgrndset(
micky3879b9f5e72025-07-08 18:04:53 -0400179 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530180 const cchar_t *ch)
181 { /* void */ }
182
183#undef wbkgdset
184void wbkgdset(
micky3879b9f5e72025-07-08 18:04:53 -0400185 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530186 chtype ch)
187 { /* void */ }
188
189#undef wbkgrnd
190int wbkgrnd(
micky3879b9f5e72025-07-08 18:04:53 -0400191 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530192 const cchar_t *ch)
193 { return(*(int *)0); }
194
195#undef wbkgd
196int wbkgd(
micky3879b9f5e72025-07-08 18:04:53 -0400197 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530198 chtype ch)
199 { return(*(int *)0); }
200
201/* ./base/lib_box.c */
202
203#undef wborder
204int wborder(
micky3879b9f5e72025-07-08 18:04:53 -0400205 WINDOW *win,
206 chtype ls,
207 chtype rs,
208 chtype ts,
209 chtype bs,
210 chtype tl,
211 chtype tr,
212 chtype bl,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530213 chtype br)
214 { return(*(int *)0); }
215
216/* ./base/lib_chgat.c */
217
218#undef wchgat
219int wchgat(
micky3879b9f5e72025-07-08 18:04:53 -0400220 WINDOW *win,
221 int n,
222 attr_t attr,
223 short pair_arg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530224 const void *opts)
225 { return(*(int *)0); }
226
227/* ./base/lib_clear.c */
228
229#undef wclear
230int wclear(
231 WINDOW *win)
232 { return(*(int *)0); }
233
234/* ./base/lib_clearok.c */
235
236#undef clearok
237int clearok(
micky3879b9f5e72025-07-08 18:04:53 -0400238 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530239 NCURSES_BOOL flag)
240 { return(*(int *)0); }
241
242/* ./base/lib_clrbot.c */
243
244#undef wclrtobot
245int wclrtobot(
246 WINDOW *win)
247 { return(*(int *)0); }
248
249/* ./base/lib_clreol.c */
250
251#undef wclrtoeol
252int wclrtoeol(
253 WINDOW *win)
254 { return(*(int *)0); }
255
256/* ./base/lib_color.c */
257
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530258#undef COLOR_PAIRS
259int COLOR_PAIRS;
260#undef COLORS
261int COLORS;
262
Steve Kondikae271bc2015-11-15 02:50:53 +0100263#undef _nc_reset_colors_sp
264NCURSES_BOOL _nc_reset_colors_sp(
265 SCREEN *sp)
266 { return(*(NCURSES_BOOL *)0); }
267
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530268#undef _nc_reset_colors
269NCURSES_BOOL _nc_reset_colors(void)
270 { return(*(NCURSES_BOOL *)0); }
271
Steve Kondikae271bc2015-11-15 02:50:53 +0100272#undef start_color_sp
273int start_color_sp(
274 SCREEN *sp)
275 { return(*(int *)0); }
276
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530277#undef start_color
278int start_color(void)
279 { return(*(int *)0); }
280
micky3879b9f5e72025-07-08 18:04:53 -0400281#undef _nc_change_pair
282void _nc_change_pair(
283 SCREEN *sp,
284 int pair)
285 { /* void */ }
286
287#undef _nc_reserve_pairs
288void _nc_reserve_pairs(
289 SCREEN *sp,
290 int want)
291 { /* void */ }
292
293#undef _nc_init_pair
294int _nc_init_pair(
295 SCREEN *sp,
296 int pair,
297 int f,
298 int b)
299 { return(*(int *)0); }
300
Steve Kondikae271bc2015-11-15 02:50:53 +0100301#undef init_pair_sp
302int init_pair_sp(
micky3879b9f5e72025-07-08 18:04:53 -0400303 SCREEN *sp,
304 short pair,
305 short f,
Steve Kondikae271bc2015-11-15 02:50:53 +0100306 short b)
307 { return(*(int *)0); }
308
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530309#undef init_pair
310int init_pair(
micky3879b9f5e72025-07-08 18:04:53 -0400311 short pair,
312 short f,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530313 short b)
314 { return(*(int *)0); }
315
micky3879b9f5e72025-07-08 18:04:53 -0400316#undef _nc_init_color
317int _nc_init_color(
318 SCREEN *sp,
319 int color,
320 int r,
321 int g,
322 int b)
323 { return(*(int *)0); }
324
Steve Kondikae271bc2015-11-15 02:50:53 +0100325#undef init_color_sp
326int init_color_sp(
micky3879b9f5e72025-07-08 18:04:53 -0400327 SCREEN *sp,
328 short color,
329 short r,
330 short g,
Steve Kondikae271bc2015-11-15 02:50:53 +0100331 short b)
332 { return(*(int *)0); }
333
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530334#undef init_color
335int init_color(
micky3879b9f5e72025-07-08 18:04:53 -0400336 short color,
337 short r,
338 short g,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530339 short b)
340 { return(*(int *)0); }
341
Steve Kondikae271bc2015-11-15 02:50:53 +0100342#undef can_change_color_sp
343NCURSES_BOOL can_change_color_sp(
344 SCREEN *sp)
345 { return(*(NCURSES_BOOL *)0); }
346
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530347#undef can_change_color
348NCURSES_BOOL can_change_color(void)
349 { return(*(NCURSES_BOOL *)0); }
350
Steve Kondikae271bc2015-11-15 02:50:53 +0100351#undef has_colors_sp
352NCURSES_BOOL has_colors_sp(
353 SCREEN *sp)
354 { return(*(NCURSES_BOOL *)0); }
355
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530356#undef has_colors
357NCURSES_BOOL has_colors(void)
358 { return(*(NCURSES_BOOL *)0); }
359
Steve Kondikae271bc2015-11-15 02:50:53 +0100360#undef color_content_sp
361int color_content_sp(
micky3879b9f5e72025-07-08 18:04:53 -0400362 SCREEN *sp,
363 short color,
364 short *r,
365 short *g,
Steve Kondikae271bc2015-11-15 02:50:53 +0100366 short *b)
367 { return(*(int *)0); }
368
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530369#undef color_content
370int color_content(
micky3879b9f5e72025-07-08 18:04:53 -0400371 short color,
372 short *r,
373 short *g,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530374 short *b)
375 { return(*(int *)0); }
376
micky3879b9f5e72025-07-08 18:04:53 -0400377#undef _nc_pair_content
378int _nc_pair_content(
379 SCREEN *sp,
380 int pair,
381 int *f,
382 int *b)
383 { return(*(int *)0); }
384
Steve Kondikae271bc2015-11-15 02:50:53 +0100385#undef pair_content_sp
386int pair_content_sp(
micky3879b9f5e72025-07-08 18:04:53 -0400387 SCREEN *sp,
388 short pair,
389 short *f,
Steve Kondikae271bc2015-11-15 02:50:53 +0100390 short *b)
391 { return(*(int *)0); }
392
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530393#undef pair_content
394int pair_content(
micky3879b9f5e72025-07-08 18:04:53 -0400395 short pair,
396 short *f,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530397 short *b)
398 { return(*(int *)0); }
399
Steve Kondikae271bc2015-11-15 02:50:53 +0100400#undef _nc_do_color_sp
401void _nc_do_color_sp(
micky3879b9f5e72025-07-08 18:04:53 -0400402 SCREEN *sp,
403 int old_pair,
404 int pair,
405 int reverse,
Steve Kondikae271bc2015-11-15 02:50:53 +0100406 NCURSES_OUTC_sp outc)
407 { /* void */ }
408
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530409#undef _nc_do_color
410void _nc_do_color(
micky3879b9f5e72025-07-08 18:04:53 -0400411 int old_pair,
412 int pair,
413 int reverse,
Steve Kondikae271bc2015-11-15 02:50:53 +0100414 NCURSES_OUTC outc)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530415 { /* void */ }
416
micky3879b9f5e72025-07-08 18:04:53 -0400417#undef init_extended_pair_sp
418int init_extended_pair_sp(
419 SCREEN *sp,
420 int pair,
421 int f,
422 int b)
423 { return(*(int *)0); }
424
425#undef init_extended_color_sp
426int init_extended_color_sp(
427 SCREEN *sp,
428 int color,
429 int r,
430 int g,
431 int b)
432 { return(*(int *)0); }
433
434#undef extended_color_content_sp
435int extended_color_content_sp(
436 SCREEN *sp,
437 int color,
438 int *r,
439 int *g,
440 int *b)
441 { return(*(int *)0); }
442
443#undef extended_pair_content_sp
444int extended_pair_content_sp(
445 SCREEN *sp,
446 int pair,
447 int *f,
448 int *b)
449 { return(*(int *)0); }
450
451#undef reset_color_pairs_sp
452void reset_color_pairs_sp(
453 SCREEN *sp)
454 { /* void */ }
455
456#undef init_extended_pair
457int init_extended_pair(
458 int pair,
459 int f,
460 int b)
461 { return(*(int *)0); }
462
463#undef init_extended_color
464int init_extended_color(
465 int color,
466 int r,
467 int g,
468 int b)
469 { return(*(int *)0); }
470
471#undef extended_color_content
472int extended_color_content(
473 int color,
474 int *r,
475 int *g,
476 int *b)
477 { return(*(int *)0); }
478
479#undef extended_pair_content
480int extended_pair_content(
481 int pair,
482 int *f,
483 int *b)
484 { return(*(int *)0); }
485
486#undef reset_color_pairs
487void reset_color_pairs(void)
488 { /* void */ }
489
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530490/* ./base/lib_colorset.c */
491
492#undef wcolor_set
493int wcolor_set(
micky3879b9f5e72025-07-08 18:04:53 -0400494 WINDOW *win,
495 short pair_arg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530496 void *opts)
497 { return(*(int *)0); }
498
499/* ./base/lib_delch.c */
500
501#undef wdelch
502int wdelch(
503 WINDOW *win)
504 { return(*(int *)0); }
505
506/* ./base/lib_delwin.c */
507
508#undef delwin
509int delwin(
510 WINDOW *win)
511 { return(*(int *)0); }
512
513/* ./base/lib_echo.c */
514
Steve Kondikae271bc2015-11-15 02:50:53 +0100515#undef echo_sp
516int echo_sp(
517 SCREEN *sp)
518 { return(*(int *)0); }
519
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530520#undef echo
521int echo(void)
522 { return(*(int *)0); }
523
Steve Kondikae271bc2015-11-15 02:50:53 +0100524#undef noecho_sp
525int noecho_sp(
526 SCREEN *sp)
527 { return(*(int *)0); }
528
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530529#undef noecho
530int noecho(void)
531 { return(*(int *)0); }
532
533/* ./base/lib_endwin.c */
534
Steve Kondikae271bc2015-11-15 02:50:53 +0100535#undef endwin_sp
536int endwin_sp(
537 SCREEN *sp)
538 { return(*(int *)0); }
539
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530540#undef endwin
541int endwin(void)
542 { return(*(int *)0); }
543
544/* ./base/lib_erase.c */
545
546#undef werase
547int werase(
548 WINDOW *win)
549 { return(*(int *)0); }
550
551/* ./base/lib_flash.c */
552
Steve Kondikae271bc2015-11-15 02:50:53 +0100553#undef flash_sp
554int flash_sp(
555 SCREEN *sp)
556 { return(*(int *)0); }
557
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530558#undef flash
559int flash(void)
560 { return(*(int *)0); }
561
562/* ./lib_gen.c */
563
564#undef addch
micky3879b9f5e72025-07-08 18:04:53 -0400565int addch(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530566 const chtype z)
567 { return(*(int *)0); }
568
569#undef addchnstr
micky3879b9f5e72025-07-08 18:04:53 -0400570int addchnstr(
571 const chtype *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530572 int z)
573 { return(*(int *)0); }
574
575#undef addchstr
micky3879b9f5e72025-07-08 18:04:53 -0400576int addchstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530577 const chtype *z)
578 { return(*(int *)0); }
579
580#undef addnstr
micky3879b9f5e72025-07-08 18:04:53 -0400581int addnstr(
582 const char *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530583 int z)
584 { return(*(int *)0); }
585
586#undef addstr
micky3879b9f5e72025-07-08 18:04:53 -0400587int addstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530588 const char *z)
589 { return(*(int *)0); }
590
591#undef attroff
micky3879b9f5e72025-07-08 18:04:53 -0400592int attroff(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530593 NCURSES_ATTR_T z)
594 { return(*(int *)0); }
595
596#undef attron
micky3879b9f5e72025-07-08 18:04:53 -0400597int attron(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530598 NCURSES_ATTR_T z)
599 { return(*(int *)0); }
600
601#undef attrset
micky3879b9f5e72025-07-08 18:04:53 -0400602int attrset(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530603 NCURSES_ATTR_T z)
604 { return(*(int *)0); }
605
606#undef attr_get
micky3879b9f5e72025-07-08 18:04:53 -0400607int attr_get(
608 attr_t *a1,
609 short *a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530610 void *z)
611 { return(*(int *)0); }
612
613#undef attr_off
micky3879b9f5e72025-07-08 18:04:53 -0400614int attr_off(
615 attr_t a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530616 void *z)
617 { return(*(int *)0); }
618
619#undef attr_on
micky3879b9f5e72025-07-08 18:04:53 -0400620int attr_on(
621 attr_t a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530622 void *z)
623 { return(*(int *)0); }
624
625#undef attr_set
micky3879b9f5e72025-07-08 18:04:53 -0400626int attr_set(
627 attr_t a1,
628 short a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530629 void *z)
630 { return(*(int *)0); }
631
632#undef bkgd
micky3879b9f5e72025-07-08 18:04:53 -0400633int bkgd(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530634 chtype z)
635 { return(*(int *)0); }
636
637#undef bkgdset
micky3879b9f5e72025-07-08 18:04:53 -0400638void bkgdset(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530639 chtype z)
640 { /* void */ }
641
642#undef border
micky3879b9f5e72025-07-08 18:04:53 -0400643int border(
644 chtype a1,
645 chtype a2,
646 chtype a3,
647 chtype a4,
648 chtype a5,
649 chtype a6,
650 chtype a7,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530651 chtype z)
652 { return(*(int *)0); }
653
654#undef box
micky3879b9f5e72025-07-08 18:04:53 -0400655int box(
656 WINDOW *a1,
657 chtype a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530658 chtype z)
659 { return(*(int *)0); }
660
661#undef chgat
micky3879b9f5e72025-07-08 18:04:53 -0400662int chgat(
663 int a1,
664 attr_t a2,
665 short a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530666 const void *z)
667 { return(*(int *)0); }
668
669#undef clear
micky3879b9f5e72025-07-08 18:04:53 -0400670int clear(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530671 { return(*(int *)0); }
672
673#undef clrtobot
micky3879b9f5e72025-07-08 18:04:53 -0400674int clrtobot(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530675 { return(*(int *)0); }
676
677#undef clrtoeol
micky3879b9f5e72025-07-08 18:04:53 -0400678int clrtoeol(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530679 { return(*(int *)0); }
680
681#undef color_set
micky3879b9f5e72025-07-08 18:04:53 -0400682int color_set(
683 short a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530684 void *z)
685 { return(*(int *)0); }
686
687#undef COLOR_PAIR
micky3879b9f5e72025-07-08 18:04:53 -0400688int COLOR_PAIR(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530689 int z)
690 { return(*(int *)0); }
691
692#undef delch
micky3879b9f5e72025-07-08 18:04:53 -0400693int delch(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530694 { return(*(int *)0); }
695
696#undef deleteln
micky3879b9f5e72025-07-08 18:04:53 -0400697int deleteln(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530698 { return(*(int *)0); }
699
700#undef echochar
micky3879b9f5e72025-07-08 18:04:53 -0400701int echochar(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530702 const chtype z)
703 { return(*(int *)0); }
704
705#undef erase
micky3879b9f5e72025-07-08 18:04:53 -0400706int erase(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530707 { return(*(int *)0); }
708
709#undef getbkgd
micky3879b9f5e72025-07-08 18:04:53 -0400710chtype getbkgd(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530711 WINDOW *z)
712 { return(*(chtype *)0); }
713
714#undef getch
micky3879b9f5e72025-07-08 18:04:53 -0400715int getch(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530716 { return(*(int *)0); }
717
718#undef getnstr
micky3879b9f5e72025-07-08 18:04:53 -0400719int getnstr(
720 char *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530721 int z)
722 { return(*(int *)0); }
723
724#undef getstr
micky3879b9f5e72025-07-08 18:04:53 -0400725int getstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530726 char *z)
727 { return(*(int *)0); }
728
729#undef hline
micky3879b9f5e72025-07-08 18:04:53 -0400730int hline(
731 chtype a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530732 int z)
733 { return(*(int *)0); }
734
735#undef inch
micky3879b9f5e72025-07-08 18:04:53 -0400736chtype inch(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530737 { return(*(chtype *)0); }
738
739#undef inchnstr
micky3879b9f5e72025-07-08 18:04:53 -0400740int inchnstr(
741 chtype *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530742 int z)
743 { return(*(int *)0); }
744
745#undef inchstr
micky3879b9f5e72025-07-08 18:04:53 -0400746int inchstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530747 chtype *z)
748 { return(*(int *)0); }
749
750#undef innstr
micky3879b9f5e72025-07-08 18:04:53 -0400751int innstr(
752 char *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530753 int z)
754 { return(*(int *)0); }
755
756#undef insch
micky3879b9f5e72025-07-08 18:04:53 -0400757int insch(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530758 chtype z)
759 { return(*(int *)0); }
760
761#undef insdelln
micky3879b9f5e72025-07-08 18:04:53 -0400762int insdelln(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530763 int z)
764 { return(*(int *)0); }
765
766#undef insertln
micky3879b9f5e72025-07-08 18:04:53 -0400767int insertln(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530768 { return(*(int *)0); }
769
770#undef insnstr
micky3879b9f5e72025-07-08 18:04:53 -0400771int insnstr(
772 const char *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530773 int z)
774 { return(*(int *)0); }
775
776#undef insstr
micky3879b9f5e72025-07-08 18:04:53 -0400777int insstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530778 const char *z)
779 { return(*(int *)0); }
780
781#undef instr
micky3879b9f5e72025-07-08 18:04:53 -0400782int instr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530783 char *z)
784 { return(*(int *)0); }
785
786#undef move
micky3879b9f5e72025-07-08 18:04:53 -0400787int move(
788 int a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530789 int z)
790 { return(*(int *)0); }
791
792#undef mvaddch
micky3879b9f5e72025-07-08 18:04:53 -0400793int mvaddch(
794 int a1,
795 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530796 const chtype z)
797 { return(*(int *)0); }
798
799#undef mvaddchnstr
micky3879b9f5e72025-07-08 18:04:53 -0400800int mvaddchnstr(
801 int a1,
802 int a2,
803 const chtype *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530804 int z)
805 { return(*(int *)0); }
806
807#undef mvaddchstr
micky3879b9f5e72025-07-08 18:04:53 -0400808int mvaddchstr(
809 int a1,
810 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530811 const chtype *z)
812 { return(*(int *)0); }
813
814#undef mvaddnstr
micky3879b9f5e72025-07-08 18:04:53 -0400815int mvaddnstr(
816 int a1,
817 int a2,
818 const char *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530819 int z)
820 { return(*(int *)0); }
821
822#undef mvaddstr
micky3879b9f5e72025-07-08 18:04:53 -0400823int mvaddstr(
824 int a1,
825 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530826 const char *z)
827 { return(*(int *)0); }
828
829#undef mvchgat
micky3879b9f5e72025-07-08 18:04:53 -0400830int mvchgat(
831 int a1,
832 int a2,
833 int a3,
834 attr_t a4,
835 short a5,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530836 const void *z)
837 { return(*(int *)0); }
838
839#undef mvdelch
micky3879b9f5e72025-07-08 18:04:53 -0400840int mvdelch(
841 int a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530842 int z)
843 { return(*(int *)0); }
844
845#undef mvgetch
micky3879b9f5e72025-07-08 18:04:53 -0400846int mvgetch(
847 int a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530848 int z)
849 { return(*(int *)0); }
850
851#undef mvgetnstr
micky3879b9f5e72025-07-08 18:04:53 -0400852int mvgetnstr(
853 int a1,
854 int a2,
855 char *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530856 int z)
857 { return(*(int *)0); }
858
859#undef mvgetstr
micky3879b9f5e72025-07-08 18:04:53 -0400860int mvgetstr(
861 int a1,
862 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530863 char *z)
864 { return(*(int *)0); }
865
866#undef mvhline
micky3879b9f5e72025-07-08 18:04:53 -0400867int mvhline(
868 int a1,
869 int a2,
870 chtype a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530871 int z)
872 { return(*(int *)0); }
873
874#undef mvinch
micky3879b9f5e72025-07-08 18:04:53 -0400875chtype mvinch(
876 int a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530877 int z)
878 { return(*(chtype *)0); }
879
880#undef mvinchnstr
micky3879b9f5e72025-07-08 18:04:53 -0400881int mvinchnstr(
882 int a1,
883 int a2,
884 chtype *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530885 int z)
886 { return(*(int *)0); }
887
888#undef mvinchstr
micky3879b9f5e72025-07-08 18:04:53 -0400889int mvinchstr(
890 int a1,
891 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530892 chtype *z)
893 { return(*(int *)0); }
894
895#undef mvinnstr
micky3879b9f5e72025-07-08 18:04:53 -0400896int mvinnstr(
897 int a1,
898 int a2,
899 char *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530900 int z)
901 { return(*(int *)0); }
902
903#undef mvinsch
micky3879b9f5e72025-07-08 18:04:53 -0400904int mvinsch(
905 int a1,
906 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530907 chtype z)
908 { return(*(int *)0); }
909
910#undef mvinsnstr
micky3879b9f5e72025-07-08 18:04:53 -0400911int mvinsnstr(
912 int a1,
913 int a2,
914 const char *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530915 int z)
916 { return(*(int *)0); }
917
918#undef mvinsstr
micky3879b9f5e72025-07-08 18:04:53 -0400919int mvinsstr(
920 int a1,
921 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530922 const char *z)
923 { return(*(int *)0); }
924
925#undef mvinstr
micky3879b9f5e72025-07-08 18:04:53 -0400926int mvinstr(
927 int a1,
928 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530929 char *z)
930 { return(*(int *)0); }
931
932#undef mvvline
micky3879b9f5e72025-07-08 18:04:53 -0400933int mvvline(
934 int a1,
935 int a2,
936 chtype a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530937 int z)
938 { return(*(int *)0); }
939
940#undef mvwaddch
micky3879b9f5e72025-07-08 18:04:53 -0400941int mvwaddch(
942 WINDOW *a1,
943 int a2,
944 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530945 const chtype z)
946 { return(*(int *)0); }
947
948#undef mvwaddchnstr
micky3879b9f5e72025-07-08 18:04:53 -0400949int mvwaddchnstr(
950 WINDOW *a1,
951 int a2,
952 int a3,
953 const chtype *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530954 int z)
955 { return(*(int *)0); }
956
957#undef mvwaddchstr
micky3879b9f5e72025-07-08 18:04:53 -0400958int mvwaddchstr(
959 WINDOW *a1,
960 int a2,
961 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530962 const chtype *z)
963 { return(*(int *)0); }
964
965#undef mvwaddnstr
micky3879b9f5e72025-07-08 18:04:53 -0400966int mvwaddnstr(
967 WINDOW *a1,
968 int a2,
969 int a3,
970 const char *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530971 int z)
972 { return(*(int *)0); }
973
974#undef mvwaddstr
micky3879b9f5e72025-07-08 18:04:53 -0400975int mvwaddstr(
976 WINDOW *a1,
977 int a2,
978 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530979 const char *z)
980 { return(*(int *)0); }
981
982#undef mvwchgat
micky3879b9f5e72025-07-08 18:04:53 -0400983int mvwchgat(
984 WINDOW *a1,
985 int a2,
986 int a3,
987 int a4,
988 attr_t a5,
989 short a6,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530990 const void *z)
991 { return(*(int *)0); }
992
993#undef mvwdelch
micky3879b9f5e72025-07-08 18:04:53 -0400994int mvwdelch(
995 WINDOW *a1,
996 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530997 int z)
998 { return(*(int *)0); }
999
1000#undef mvwgetch
micky3879b9f5e72025-07-08 18:04:53 -04001001int mvwgetch(
1002 WINDOW *a1,
1003 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301004 int z)
1005 { return(*(int *)0); }
1006
1007#undef mvwgetnstr
micky3879b9f5e72025-07-08 18:04:53 -04001008int mvwgetnstr(
1009 WINDOW *a1,
1010 int a2,
1011 int a3,
1012 char *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301013 int z)
1014 { return(*(int *)0); }
1015
1016#undef mvwgetstr
micky3879b9f5e72025-07-08 18:04:53 -04001017int mvwgetstr(
1018 WINDOW *a1,
1019 int a2,
1020 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301021 char *z)
1022 { return(*(int *)0); }
1023
1024#undef mvwhline
micky3879b9f5e72025-07-08 18:04:53 -04001025int mvwhline(
1026 WINDOW *a1,
1027 int a2,
1028 int a3,
1029 chtype a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301030 int z)
1031 { return(*(int *)0); }
1032
1033#undef mvwinch
micky3879b9f5e72025-07-08 18:04:53 -04001034chtype mvwinch(
1035 WINDOW *a1,
1036 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301037 int z)
1038 { return(*(chtype *)0); }
1039
1040#undef mvwinchnstr
micky3879b9f5e72025-07-08 18:04:53 -04001041int mvwinchnstr(
1042 WINDOW *a1,
1043 int a2,
1044 int a3,
1045 chtype *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301046 int z)
1047 { return(*(int *)0); }
1048
1049#undef mvwinchstr
micky3879b9f5e72025-07-08 18:04:53 -04001050int mvwinchstr(
1051 WINDOW *a1,
1052 int a2,
1053 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301054 chtype *z)
1055 { return(*(int *)0); }
1056
1057#undef mvwinnstr
micky3879b9f5e72025-07-08 18:04:53 -04001058int mvwinnstr(
1059 WINDOW *a1,
1060 int a2,
1061 int a3,
1062 char *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301063 int z)
1064 { return(*(int *)0); }
1065
1066#undef mvwinsch
micky3879b9f5e72025-07-08 18:04:53 -04001067int mvwinsch(
1068 WINDOW *a1,
1069 int a2,
1070 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301071 chtype z)
1072 { return(*(int *)0); }
1073
1074#undef mvwinsnstr
micky3879b9f5e72025-07-08 18:04:53 -04001075int mvwinsnstr(
1076 WINDOW *a1,
1077 int a2,
1078 int a3,
1079 const char *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301080 int z)
1081 { return(*(int *)0); }
1082
1083#undef mvwinsstr
micky3879b9f5e72025-07-08 18:04:53 -04001084int mvwinsstr(
1085 WINDOW *a1,
1086 int a2,
1087 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301088 const char *z)
1089 { return(*(int *)0); }
1090
1091#undef mvwinstr
micky3879b9f5e72025-07-08 18:04:53 -04001092int mvwinstr(
1093 WINDOW *a1,
1094 int a2,
1095 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301096 char *z)
1097 { return(*(int *)0); }
1098
1099#undef mvwvline
micky3879b9f5e72025-07-08 18:04:53 -04001100int mvwvline(
1101 WINDOW *a1,
1102 int a2,
1103 int a3,
1104 chtype a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301105 int z)
1106 { return(*(int *)0); }
1107
1108#undef PAIR_NUMBER
micky3879b9f5e72025-07-08 18:04:53 -04001109int PAIR_NUMBER(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301110 int z)
1111 { return(*(int *)0); }
1112
1113#undef redrawwin
micky3879b9f5e72025-07-08 18:04:53 -04001114int redrawwin(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301115 WINDOW *z)
1116 { return(*(int *)0); }
1117
1118#undef refresh
micky3879b9f5e72025-07-08 18:04:53 -04001119int refresh(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301120 { return(*(int *)0); }
1121
1122#undef scrl
micky3879b9f5e72025-07-08 18:04:53 -04001123int scrl(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301124 int z)
1125 { return(*(int *)0); }
1126
1127#undef scroll
micky3879b9f5e72025-07-08 18:04:53 -04001128int scroll(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301129 WINDOW *z)
1130 { return(*(int *)0); }
1131
1132#undef setscrreg
micky3879b9f5e72025-07-08 18:04:53 -04001133int setscrreg(
1134 int a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301135 int z)
1136 { return(*(int *)0); }
1137
1138#undef slk_attr_off
micky3879b9f5e72025-07-08 18:04:53 -04001139int slk_attr_off(
1140 const attr_t a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301141 void *z)
1142 { return(*(int *)0); }
1143
1144#undef slk_attr_on
micky3879b9f5e72025-07-08 18:04:53 -04001145int slk_attr_on(
1146 attr_t a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301147 void *z)
1148 { return(*(int *)0); }
1149
1150#undef standout
micky3879b9f5e72025-07-08 18:04:53 -04001151int standout(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301152 { return(*(int *)0); }
1153
1154#undef standend
micky3879b9f5e72025-07-08 18:04:53 -04001155int standend(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301156 { return(*(int *)0); }
1157
1158#undef timeout
micky3879b9f5e72025-07-08 18:04:53 -04001159void timeout(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301160 int z)
1161 { /* void */ }
1162
1163#undef touchline
micky3879b9f5e72025-07-08 18:04:53 -04001164int touchline(
1165 WINDOW *a1,
1166 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301167 int z)
1168 { return(*(int *)0); }
1169
1170#undef touchwin
micky3879b9f5e72025-07-08 18:04:53 -04001171int touchwin(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301172 WINDOW *z)
1173 { return(*(int *)0); }
1174
1175#undef untouchwin
micky3879b9f5e72025-07-08 18:04:53 -04001176int untouchwin(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301177 WINDOW *z)
1178 { return(*(int *)0); }
1179
1180#undef vline
micky3879b9f5e72025-07-08 18:04:53 -04001181int vline(
1182 chtype a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301183 int z)
1184 { return(*(int *)0); }
1185
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301186#undef waddchstr
micky3879b9f5e72025-07-08 18:04:53 -04001187int waddchstr(
1188 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301189 const chtype *z)
1190 { return(*(int *)0); }
1191
1192#undef waddstr
micky3879b9f5e72025-07-08 18:04:53 -04001193int waddstr(
1194 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301195 const char *z)
1196 { return(*(int *)0); }
1197
1198#undef wattron
micky3879b9f5e72025-07-08 18:04:53 -04001199int wattron(
1200 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301201 int z)
1202 { return(*(int *)0); }
1203
1204#undef wattroff
micky3879b9f5e72025-07-08 18:04:53 -04001205int wattroff(
1206 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301207 int z)
1208 { return(*(int *)0); }
1209
1210#undef wattrset
micky3879b9f5e72025-07-08 18:04:53 -04001211int wattrset(
1212 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301213 int z)
1214 { return(*(int *)0); }
1215
1216#undef wattr_get
micky3879b9f5e72025-07-08 18:04:53 -04001217int wattr_get(
1218 WINDOW *a1,
1219 attr_t *a2,
1220 short *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301221 void *z)
1222 { return(*(int *)0); }
1223
1224#undef wattr_set
micky3879b9f5e72025-07-08 18:04:53 -04001225int wattr_set(
1226 WINDOW *a1,
1227 attr_t a2,
1228 short a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301229 void *z)
1230 { return(*(int *)0); }
1231
1232#undef wdeleteln
micky3879b9f5e72025-07-08 18:04:53 -04001233int wdeleteln(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301234 WINDOW *z)
1235 { return(*(int *)0); }
1236
1237#undef wgetstr
micky3879b9f5e72025-07-08 18:04:53 -04001238int wgetstr(
1239 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301240 char *z)
1241 { return(*(int *)0); }
1242
1243#undef winchstr
micky3879b9f5e72025-07-08 18:04:53 -04001244int winchstr(
1245 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301246 chtype *z)
1247 { return(*(int *)0); }
1248
1249#undef winsertln
micky3879b9f5e72025-07-08 18:04:53 -04001250int winsertln(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301251 WINDOW *z)
1252 { return(*(int *)0); }
1253
1254#undef winsstr
micky3879b9f5e72025-07-08 18:04:53 -04001255int winsstr(
1256 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301257 const char *z)
1258 { return(*(int *)0); }
1259
1260#undef winstr
micky3879b9f5e72025-07-08 18:04:53 -04001261int winstr(
1262 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301263 char *z)
1264 { return(*(int *)0); }
1265
1266#undef wstandout
micky3879b9f5e72025-07-08 18:04:53 -04001267int wstandout(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301268 WINDOW *z)
1269 { return(*(int *)0); }
1270
1271#undef wstandend
micky3879b9f5e72025-07-08 18:04:53 -04001272int wstandend(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301273 WINDOW *z)
1274 { return(*(int *)0); }
1275
1276#undef getattrs
micky3879b9f5e72025-07-08 18:04:53 -04001277int getattrs(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301278 const WINDOW *z)
1279 { return(*(int *)0); }
1280
1281#undef getcurx
micky3879b9f5e72025-07-08 18:04:53 -04001282int getcurx(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301283 const WINDOW *z)
1284 { return(*(int *)0); }
1285
1286#undef getcury
micky3879b9f5e72025-07-08 18:04:53 -04001287int getcury(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301288 const WINDOW *z)
1289 { return(*(int *)0); }
1290
1291#undef getbegx
micky3879b9f5e72025-07-08 18:04:53 -04001292int getbegx(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301293 const WINDOW *z)
1294 { return(*(int *)0); }
1295
1296#undef getbegy
micky3879b9f5e72025-07-08 18:04:53 -04001297int getbegy(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301298 const WINDOW *z)
1299 { return(*(int *)0); }
1300
1301#undef getmaxx
micky3879b9f5e72025-07-08 18:04:53 -04001302int getmaxx(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301303 const WINDOW *z)
1304 { return(*(int *)0); }
1305
1306#undef getmaxy
micky3879b9f5e72025-07-08 18:04:53 -04001307int getmaxy(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301308 const WINDOW *z)
1309 { return(*(int *)0); }
1310
1311#undef getparx
micky3879b9f5e72025-07-08 18:04:53 -04001312int getparx(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301313 const WINDOW *z)
1314 { return(*(int *)0); }
1315
1316#undef getpary
micky3879b9f5e72025-07-08 18:04:53 -04001317int getpary(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301318 const WINDOW *z)
1319 { return(*(int *)0); }
1320
1321#undef wgetparent
micky3879b9f5e72025-07-08 18:04:53 -04001322WINDOW *wgetparent(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301323 const WINDOW *z)
1324 { return(*(WINDOW **)0); }
1325
1326#undef is_cleared
micky3879b9f5e72025-07-08 18:04:53 -04001327NCURSES_BOOL is_cleared(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301328 const WINDOW *z)
1329 { return(*(NCURSES_BOOL *)0); }
1330
1331#undef is_idcok
micky3879b9f5e72025-07-08 18:04:53 -04001332NCURSES_BOOL is_idcok(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301333 const WINDOW *z)
1334 { return(*(NCURSES_BOOL *)0); }
1335
1336#undef is_idlok
micky3879b9f5e72025-07-08 18:04:53 -04001337NCURSES_BOOL is_idlok(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301338 const WINDOW *z)
1339 { return(*(NCURSES_BOOL *)0); }
1340
1341#undef is_immedok
micky3879b9f5e72025-07-08 18:04:53 -04001342NCURSES_BOOL is_immedok(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301343 const WINDOW *z)
1344 { return(*(NCURSES_BOOL *)0); }
1345
1346#undef is_keypad
micky3879b9f5e72025-07-08 18:04:53 -04001347NCURSES_BOOL is_keypad(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301348 const WINDOW *z)
1349 { return(*(NCURSES_BOOL *)0); }
1350
1351#undef is_leaveok
micky3879b9f5e72025-07-08 18:04:53 -04001352NCURSES_BOOL is_leaveok(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301353 const WINDOW *z)
1354 { return(*(NCURSES_BOOL *)0); }
1355
1356#undef is_nodelay
micky3879b9f5e72025-07-08 18:04:53 -04001357NCURSES_BOOL is_nodelay(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301358 const WINDOW *z)
1359 { return(*(NCURSES_BOOL *)0); }
1360
1361#undef is_notimeout
micky3879b9f5e72025-07-08 18:04:53 -04001362NCURSES_BOOL is_notimeout(
Steve Kondikae271bc2015-11-15 02:50:53 +01001363 const WINDOW *z)
1364 { return(*(NCURSES_BOOL *)0); }
1365
1366#undef is_pad
micky3879b9f5e72025-07-08 18:04:53 -04001367NCURSES_BOOL is_pad(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301368 const WINDOW *z)
1369 { return(*(NCURSES_BOOL *)0); }
1370
1371#undef is_scrollok
micky3879b9f5e72025-07-08 18:04:53 -04001372NCURSES_BOOL is_scrollok(
Steve Kondikae271bc2015-11-15 02:50:53 +01001373 const WINDOW *z)
1374 { return(*(NCURSES_BOOL *)0); }
1375
1376#undef is_subwin
micky3879b9f5e72025-07-08 18:04:53 -04001377NCURSES_BOOL is_subwin(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301378 const WINDOW *z)
1379 { return(*(NCURSES_BOOL *)0); }
1380
1381#undef is_syncok
micky3879b9f5e72025-07-08 18:04:53 -04001382NCURSES_BOOL is_syncok(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301383 const WINDOW *z)
1384 { return(*(NCURSES_BOOL *)0); }
1385
Steve Kondikae271bc2015-11-15 02:50:53 +01001386#undef wgetdelay
micky3879b9f5e72025-07-08 18:04:53 -04001387int wgetdelay(
Steve Kondikae271bc2015-11-15 02:50:53 +01001388 const WINDOW *z)
1389 { return(*(int *)0); }
1390
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301391#undef wgetscrreg
micky3879b9f5e72025-07-08 18:04:53 -04001392int wgetscrreg(
1393 const WINDOW *a1,
1394 int *a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301395 int *z)
1396 { return(*(int *)0); }
1397
1398#undef add_wch
micky3879b9f5e72025-07-08 18:04:53 -04001399int add_wch(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301400 const cchar_t *z)
1401 { return(*(int *)0); }
1402
1403#undef add_wchnstr
micky3879b9f5e72025-07-08 18:04:53 -04001404int add_wchnstr(
1405 const cchar_t *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301406 int z)
1407 { return(*(int *)0); }
1408
1409#undef add_wchstr
micky3879b9f5e72025-07-08 18:04:53 -04001410int add_wchstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301411 const cchar_t *z)
1412 { return(*(int *)0); }
1413
1414#undef addnwstr
micky3879b9f5e72025-07-08 18:04:53 -04001415int addnwstr(
1416 const wchar_t *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301417 int z)
1418 { return(*(int *)0); }
1419
1420#undef addwstr
micky3879b9f5e72025-07-08 18:04:53 -04001421int addwstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301422 const wchar_t *z)
1423 { return(*(int *)0); }
1424
1425#undef bkgrnd
micky3879b9f5e72025-07-08 18:04:53 -04001426int bkgrnd(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301427 const cchar_t *z)
1428 { return(*(int *)0); }
1429
1430#undef bkgrndset
micky3879b9f5e72025-07-08 18:04:53 -04001431void bkgrndset(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301432 const cchar_t *z)
1433 { /* void */ }
1434
1435#undef border_set
micky3879b9f5e72025-07-08 18:04:53 -04001436int border_set(
1437 const cchar_t *a1,
1438 const cchar_t *a2,
1439 const cchar_t *a3,
1440 const cchar_t *a4,
1441 const cchar_t *a5,
1442 const cchar_t *a6,
1443 const cchar_t *a7,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301444 const cchar_t *z)
1445 { return(*(int *)0); }
1446
1447#undef box_set
micky3879b9f5e72025-07-08 18:04:53 -04001448int box_set(
1449 WINDOW *a1,
1450 const cchar_t *a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301451 const cchar_t *z)
1452 { return(*(int *)0); }
1453
1454#undef echo_wchar
micky3879b9f5e72025-07-08 18:04:53 -04001455int echo_wchar(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301456 const cchar_t *z)
1457 { return(*(int *)0); }
1458
1459#undef get_wch
micky3879b9f5e72025-07-08 18:04:53 -04001460int get_wch(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301461 wint_t *z)
1462 { return(*(int *)0); }
1463
1464#undef get_wstr
micky3879b9f5e72025-07-08 18:04:53 -04001465int get_wstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301466 wint_t *z)
1467 { return(*(int *)0); }
1468
1469#undef getbkgrnd
micky3879b9f5e72025-07-08 18:04:53 -04001470int getbkgrnd(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301471 cchar_t *z)
1472 { return(*(int *)0); }
1473
1474#undef getn_wstr
micky3879b9f5e72025-07-08 18:04:53 -04001475int getn_wstr(
1476 wint_t *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301477 int z)
1478 { return(*(int *)0); }
1479
1480#undef hline_set
micky3879b9f5e72025-07-08 18:04:53 -04001481int hline_set(
1482 const cchar_t *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301483 int z)
1484 { return(*(int *)0); }
1485
1486#undef in_wch
micky3879b9f5e72025-07-08 18:04:53 -04001487int in_wch(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301488 cchar_t *z)
1489 { return(*(int *)0); }
1490
1491#undef in_wchnstr
micky3879b9f5e72025-07-08 18:04:53 -04001492int in_wchnstr(
1493 cchar_t *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301494 int z)
1495 { return(*(int *)0); }
1496
1497#undef in_wchstr
micky3879b9f5e72025-07-08 18:04:53 -04001498int in_wchstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301499 cchar_t *z)
1500 { return(*(int *)0); }
1501
1502#undef innwstr
micky3879b9f5e72025-07-08 18:04:53 -04001503int innwstr(
1504 wchar_t *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301505 int z)
1506 { return(*(int *)0); }
1507
1508#undef ins_nwstr
micky3879b9f5e72025-07-08 18:04:53 -04001509int ins_nwstr(
1510 const wchar_t *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301511 int z)
1512 { return(*(int *)0); }
1513
1514#undef ins_wch
micky3879b9f5e72025-07-08 18:04:53 -04001515int ins_wch(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301516 const cchar_t *z)
1517 { return(*(int *)0); }
1518
1519#undef ins_wstr
micky3879b9f5e72025-07-08 18:04:53 -04001520int ins_wstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301521 const wchar_t *z)
1522 { return(*(int *)0); }
1523
1524#undef inwstr
micky3879b9f5e72025-07-08 18:04:53 -04001525int inwstr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301526 wchar_t *z)
1527 { return(*(int *)0); }
1528
1529#undef mvadd_wch
micky3879b9f5e72025-07-08 18:04:53 -04001530int mvadd_wch(
1531 int a1,
1532 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301533 const cchar_t *z)
1534 { return(*(int *)0); }
1535
1536#undef mvadd_wchnstr
micky3879b9f5e72025-07-08 18:04:53 -04001537int mvadd_wchnstr(
1538 int a1,
1539 int a2,
1540 const cchar_t *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301541 int z)
1542 { return(*(int *)0); }
1543
1544#undef mvadd_wchstr
micky3879b9f5e72025-07-08 18:04:53 -04001545int mvadd_wchstr(
1546 int a1,
1547 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301548 const cchar_t *z)
1549 { return(*(int *)0); }
1550
1551#undef mvaddnwstr
micky3879b9f5e72025-07-08 18:04:53 -04001552int mvaddnwstr(
1553 int a1,
1554 int a2,
1555 const wchar_t *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301556 int z)
1557 { return(*(int *)0); }
1558
1559#undef mvaddwstr
micky3879b9f5e72025-07-08 18:04:53 -04001560int mvaddwstr(
1561 int a1,
1562 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301563 const wchar_t *z)
1564 { return(*(int *)0); }
1565
1566#undef mvget_wch
micky3879b9f5e72025-07-08 18:04:53 -04001567int mvget_wch(
1568 int a1,
1569 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301570 wint_t *z)
1571 { return(*(int *)0); }
1572
1573#undef mvget_wstr
micky3879b9f5e72025-07-08 18:04:53 -04001574int mvget_wstr(
1575 int a1,
1576 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301577 wint_t *z)
1578 { return(*(int *)0); }
1579
1580#undef mvgetn_wstr
micky3879b9f5e72025-07-08 18:04:53 -04001581int mvgetn_wstr(
1582 int a1,
1583 int a2,
1584 wint_t *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301585 int z)
1586 { return(*(int *)0); }
1587
1588#undef mvhline_set
micky3879b9f5e72025-07-08 18:04:53 -04001589int mvhline_set(
1590 int a1,
1591 int a2,
1592 const cchar_t *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301593 int z)
1594 { return(*(int *)0); }
1595
1596#undef mvin_wch
micky3879b9f5e72025-07-08 18:04:53 -04001597int mvin_wch(
1598 int a1,
1599 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301600 cchar_t *z)
1601 { return(*(int *)0); }
1602
1603#undef mvin_wchnstr
micky3879b9f5e72025-07-08 18:04:53 -04001604int mvin_wchnstr(
1605 int a1,
1606 int a2,
1607 cchar_t *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301608 int z)
1609 { return(*(int *)0); }
1610
1611#undef mvin_wchstr
micky3879b9f5e72025-07-08 18:04:53 -04001612int mvin_wchstr(
1613 int a1,
1614 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301615 cchar_t *z)
1616 { return(*(int *)0); }
1617
1618#undef mvinnwstr
micky3879b9f5e72025-07-08 18:04:53 -04001619int mvinnwstr(
1620 int a1,
1621 int a2,
1622 wchar_t *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301623 int z)
1624 { return(*(int *)0); }
1625
1626#undef mvins_nwstr
micky3879b9f5e72025-07-08 18:04:53 -04001627int mvins_nwstr(
1628 int a1,
1629 int a2,
1630 const wchar_t *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301631 int z)
1632 { return(*(int *)0); }
1633
1634#undef mvins_wch
micky3879b9f5e72025-07-08 18:04:53 -04001635int mvins_wch(
1636 int a1,
1637 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301638 const cchar_t *z)
1639 { return(*(int *)0); }
1640
1641#undef mvins_wstr
micky3879b9f5e72025-07-08 18:04:53 -04001642int mvins_wstr(
1643 int a1,
1644 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301645 const wchar_t *z)
1646 { return(*(int *)0); }
1647
1648#undef mvinwstr
micky3879b9f5e72025-07-08 18:04:53 -04001649int mvinwstr(
1650 int a1,
1651 int a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301652 wchar_t *z)
1653 { return(*(int *)0); }
1654
1655#undef mvvline_set
micky3879b9f5e72025-07-08 18:04:53 -04001656int mvvline_set(
1657 int a1,
1658 int a2,
1659 const cchar_t *a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301660 int z)
1661 { return(*(int *)0); }
1662
1663#undef mvwadd_wch
micky3879b9f5e72025-07-08 18:04:53 -04001664int mvwadd_wch(
1665 WINDOW *a1,
1666 int a2,
1667 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301668 const cchar_t *z)
1669 { return(*(int *)0); }
1670
1671#undef mvwadd_wchnstr
micky3879b9f5e72025-07-08 18:04:53 -04001672int mvwadd_wchnstr(
1673 WINDOW *a1,
1674 int a2,
1675 int a3,
1676 const cchar_t *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301677 int z)
1678 { return(*(int *)0); }
1679
1680#undef mvwadd_wchstr
micky3879b9f5e72025-07-08 18:04:53 -04001681int mvwadd_wchstr(
1682 WINDOW *a1,
1683 int a2,
1684 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301685 const cchar_t *z)
1686 { return(*(int *)0); }
1687
1688#undef mvwaddnwstr
micky3879b9f5e72025-07-08 18:04:53 -04001689int mvwaddnwstr(
1690 WINDOW *a1,
1691 int a2,
1692 int a3,
1693 const wchar_t *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301694 int z)
1695 { return(*(int *)0); }
1696
1697#undef mvwaddwstr
micky3879b9f5e72025-07-08 18:04:53 -04001698int mvwaddwstr(
1699 WINDOW *a1,
1700 int a2,
1701 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301702 const wchar_t *z)
1703 { return(*(int *)0); }
1704
1705#undef mvwget_wch
micky3879b9f5e72025-07-08 18:04:53 -04001706int mvwget_wch(
1707 WINDOW *a1,
1708 int a2,
1709 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301710 wint_t *z)
1711 { return(*(int *)0); }
1712
1713#undef mvwget_wstr
micky3879b9f5e72025-07-08 18:04:53 -04001714int mvwget_wstr(
1715 WINDOW *a1,
1716 int a2,
1717 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301718 wint_t *z)
1719 { return(*(int *)0); }
1720
1721#undef mvwgetn_wstr
micky3879b9f5e72025-07-08 18:04:53 -04001722int mvwgetn_wstr(
1723 WINDOW *a1,
1724 int a2,
1725 int a3,
1726 wint_t *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301727 int z)
1728 { return(*(int *)0); }
1729
1730#undef mvwhline_set
micky3879b9f5e72025-07-08 18:04:53 -04001731int mvwhline_set(
1732 WINDOW *a1,
1733 int a2,
1734 int a3,
1735 const cchar_t *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301736 int z)
1737 { return(*(int *)0); }
1738
1739#undef mvwin_wch
micky3879b9f5e72025-07-08 18:04:53 -04001740int mvwin_wch(
1741 WINDOW *a1,
1742 int a2,
1743 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301744 cchar_t *z)
1745 { return(*(int *)0); }
1746
1747#undef mvwin_wchnstr
micky3879b9f5e72025-07-08 18:04:53 -04001748int mvwin_wchnstr(
1749 WINDOW *a1,
1750 int a2,
1751 int a3,
1752 cchar_t *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301753 int z)
1754 { return(*(int *)0); }
1755
1756#undef mvwin_wchstr
micky3879b9f5e72025-07-08 18:04:53 -04001757int mvwin_wchstr(
1758 WINDOW *a1,
1759 int a2,
1760 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301761 cchar_t *z)
1762 { return(*(int *)0); }
1763
1764#undef mvwinnwstr
micky3879b9f5e72025-07-08 18:04:53 -04001765int mvwinnwstr(
1766 WINDOW *a1,
1767 int a2,
1768 int a3,
1769 wchar_t *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301770 int z)
1771 { return(*(int *)0); }
1772
1773#undef mvwins_nwstr
micky3879b9f5e72025-07-08 18:04:53 -04001774int mvwins_nwstr(
1775 WINDOW *a1,
1776 int a2,
1777 int a3,
1778 const wchar_t *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301779 int z)
1780 { return(*(int *)0); }
1781
1782#undef mvwins_wch
micky3879b9f5e72025-07-08 18:04:53 -04001783int mvwins_wch(
1784 WINDOW *a1,
1785 int a2,
1786 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301787 const cchar_t *z)
1788 { return(*(int *)0); }
1789
1790#undef mvwins_wstr
micky3879b9f5e72025-07-08 18:04:53 -04001791int mvwins_wstr(
1792 WINDOW *a1,
1793 int a2,
1794 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301795 const wchar_t *z)
1796 { return(*(int *)0); }
1797
1798#undef mvwinwstr
micky3879b9f5e72025-07-08 18:04:53 -04001799int mvwinwstr(
1800 WINDOW *a1,
1801 int a2,
1802 int a3,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301803 wchar_t *z)
1804 { return(*(int *)0); }
1805
1806#undef mvwvline_set
micky3879b9f5e72025-07-08 18:04:53 -04001807int mvwvline_set(
1808 WINDOW *a1,
1809 int a2,
1810 int a3,
1811 const cchar_t *a4,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301812 int z)
1813 { return(*(int *)0); }
1814
1815#undef vline_set
micky3879b9f5e72025-07-08 18:04:53 -04001816int vline_set(
1817 const cchar_t *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301818 int z)
1819 { return(*(int *)0); }
1820
1821#undef wadd_wchstr
micky3879b9f5e72025-07-08 18:04:53 -04001822int wadd_wchstr(
1823 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301824 const cchar_t *z)
1825 { return(*(int *)0); }
1826
1827#undef waddwstr
micky3879b9f5e72025-07-08 18:04:53 -04001828int waddwstr(
1829 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301830 const wchar_t *z)
1831 { return(*(int *)0); }
1832
1833#undef wget_wstr
micky3879b9f5e72025-07-08 18:04:53 -04001834int wget_wstr(
1835 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301836 wint_t *z)
1837 { return(*(int *)0); }
1838
1839#undef wgetbkgrnd
micky3879b9f5e72025-07-08 18:04:53 -04001840int wgetbkgrnd(
1841 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301842 cchar_t *z)
1843 { return(*(int *)0); }
1844
1845#undef win_wchstr
micky3879b9f5e72025-07-08 18:04:53 -04001846int win_wchstr(
1847 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301848 cchar_t *z)
1849 { return(*(int *)0); }
1850
1851#undef wins_wstr
micky3879b9f5e72025-07-08 18:04:53 -04001852int wins_wstr(
1853 WINDOW *a1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301854 const wchar_t *z)
1855 { return(*(int *)0); }
1856
1857#undef mouse_trafo
micky3879b9f5e72025-07-08 18:04:53 -04001858NCURSES_BOOL mouse_trafo(
1859 int *a1,
1860 int *a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301861 NCURSES_BOOL z)
1862 { return(*(NCURSES_BOOL *)0); }
1863
1864/* ./base/lib_getch.c */
1865
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301866#undef ESCDELAY
1867int ESCDELAY;
1868
Steve Kondikae271bc2015-11-15 02:50:53 +01001869#undef set_escdelay_sp
1870int set_escdelay_sp(
micky3879b9f5e72025-07-08 18:04:53 -04001871 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01001872 int value)
1873 { return(*(int *)0); }
1874
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301875#undef set_escdelay
1876int set_escdelay(
1877 int value)
1878 { return(*(int *)0); }
1879
Steve Kondikae271bc2015-11-15 02:50:53 +01001880#undef get_escdelay_sp
1881int get_escdelay_sp(
1882 SCREEN *sp)
1883 { return(*(int *)0); }
1884
1885#undef get_escdelay
1886int get_escdelay(void)
1887 { return(*(int *)0); }
1888
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301889#undef _nc_wgetch
1890int _nc_wgetch(
micky3879b9f5e72025-07-08 18:04:53 -04001891 WINDOW *win,
1892 int *result,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301893 int use_meta)
1894 { return(*(int *)0); }
1895
1896#undef wgetch
1897int wgetch(
1898 WINDOW *win)
1899 { return(*(int *)0); }
1900
1901/* ./base/lib_getstr.c */
1902
1903#undef wgetnstr
1904int wgetnstr(
micky3879b9f5e72025-07-08 18:04:53 -04001905 WINDOW *win,
1906 char *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301907 int maxlen)
1908 { return(*(int *)0); }
1909
1910/* ./base/lib_hline.c */
1911
1912#undef whline
1913int whline(
micky3879b9f5e72025-07-08 18:04:53 -04001914 WINDOW *win,
1915 chtype ch,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301916 int n)
1917 { return(*(int *)0); }
1918
1919/* ./base/lib_immedok.c */
1920
1921#undef immedok
1922void immedok(
micky3879b9f5e72025-07-08 18:04:53 -04001923 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301924 NCURSES_BOOL flag)
1925 { /* void */ }
1926
1927/* ./base/lib_inchstr.c */
1928
1929#undef winchnstr
1930int winchnstr(
micky3879b9f5e72025-07-08 18:04:53 -04001931 WINDOW *win,
1932 chtype *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301933 int n)
1934 { return(*(int *)0); }
1935
1936/* ./base/lib_initscr.c */
1937
1938#undef initscr
1939WINDOW *initscr(void)
1940 { return(*(WINDOW **)0); }
1941
1942/* ./base/lib_insch.c */
1943
1944#undef _nc_insert_ch
1945int _nc_insert_ch(
micky3879b9f5e72025-07-08 18:04:53 -04001946 SCREEN *sp,
1947 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301948 chtype ch)
1949 { return(*(int *)0); }
1950
1951#undef winsch
1952int winsch(
micky3879b9f5e72025-07-08 18:04:53 -04001953 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301954 chtype c)
1955 { return(*(int *)0); }
1956
1957/* ./base/lib_insdel.c */
1958
1959#undef winsdelln
1960int winsdelln(
micky3879b9f5e72025-07-08 18:04:53 -04001961 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301962 int n)
1963 { return(*(int *)0); }
1964
1965/* ./base/lib_insnstr.c */
1966
1967#undef winsnstr
1968int winsnstr(
micky3879b9f5e72025-07-08 18:04:53 -04001969 WINDOW *win,
1970 const char *s,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301971 int n)
1972 { return(*(int *)0); }
1973
1974/* ./base/lib_instr.c */
1975
1976#undef winnstr
1977int winnstr(
micky3879b9f5e72025-07-08 18:04:53 -04001978 WINDOW *win,
1979 char *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301980 int n)
1981 { return(*(int *)0); }
1982
1983/* ./base/lib_isendwin.c */
1984
Steve Kondikae271bc2015-11-15 02:50:53 +01001985#undef isendwin_sp
1986NCURSES_BOOL isendwin_sp(
1987 SCREEN *sp)
1988 { return(*(NCURSES_BOOL *)0); }
1989
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301990#undef isendwin
1991NCURSES_BOOL isendwin(void)
1992 { return(*(NCURSES_BOOL *)0); }
1993
1994/* ./base/lib_leaveok.c */
1995
1996#undef leaveok
1997int leaveok(
micky3879b9f5e72025-07-08 18:04:53 -04001998 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301999 NCURSES_BOOL flag)
2000 { return(*(int *)0); }
2001
2002/* ./base/lib_mouse.c */
2003
Steve Kondikae271bc2015-11-15 02:50:53 +01002004#undef getmouse_sp
2005int getmouse_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002006 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002007 MEVENT *aevent)
2008 { return(*(int *)0); }
2009
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302010#undef getmouse
2011int getmouse(
2012 MEVENT *aevent)
2013 { return(*(int *)0); }
2014
Steve Kondikae271bc2015-11-15 02:50:53 +01002015#undef ungetmouse_sp
2016int ungetmouse_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002017 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002018 MEVENT *aevent)
2019 { return(*(int *)0); }
2020
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302021#undef ungetmouse
2022int ungetmouse(
2023 MEVENT *aevent)
2024 { return(*(int *)0); }
2025
Steve Kondikae271bc2015-11-15 02:50:53 +01002026#undef mousemask_sp
2027mmask_t mousemask_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002028 SCREEN *sp,
2029 mmask_t newmask,
Steve Kondikae271bc2015-11-15 02:50:53 +01002030 mmask_t *oldmask)
2031 { return(*(mmask_t *)0); }
2032
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302033#undef mousemask
2034mmask_t mousemask(
micky3879b9f5e72025-07-08 18:04:53 -04002035 mmask_t newmask,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302036 mmask_t *oldmask)
2037 { return(*(mmask_t *)0); }
2038
2039#undef wenclose
2040NCURSES_BOOL wenclose(
micky3879b9f5e72025-07-08 18:04:53 -04002041 const WINDOW *win,
2042 int y,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302043 int x)
2044 { return(*(NCURSES_BOOL *)0); }
2045
Steve Kondikae271bc2015-11-15 02:50:53 +01002046#undef mouseinterval_sp
2047int mouseinterval_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002048 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002049 int maxclick)
2050 { return(*(int *)0); }
2051
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302052#undef mouseinterval
2053int mouseinterval(
2054 int maxclick)
2055 { return(*(int *)0); }
2056
2057#undef _nc_has_mouse
Steve Kondikae271bc2015-11-15 02:50:53 +01002058NCURSES_BOOL _nc_has_mouse(
2059 SCREEN *sp)
2060 { return(*(NCURSES_BOOL *)0); }
2061
2062#undef has_mouse_sp
2063NCURSES_BOOL has_mouse_sp(
2064 SCREEN *sp)
2065 { return(*(NCURSES_BOOL *)0); }
2066
2067#undef has_mouse
2068NCURSES_BOOL has_mouse(void)
2069 { return(*(NCURSES_BOOL *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302070
2071#undef wmouse_trafo
2072NCURSES_BOOL wmouse_trafo(
micky3879b9f5e72025-07-08 18:04:53 -04002073 const WINDOW *win,
2074 int *pY,
2075 int *pX,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302076 NCURSES_BOOL to_screen)
2077 { return(*(NCURSES_BOOL *)0); }
2078
2079/* ./base/lib_move.c */
2080
2081#undef wmove
2082int wmove(
micky3879b9f5e72025-07-08 18:04:53 -04002083 WINDOW *win,
2084 int y,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302085 int x)
2086 { return(*(int *)0); }
2087
2088/* ./tty/lib_mvcur.c */
2089
Steve Kondikae271bc2015-11-15 02:50:53 +01002090#undef _nc_msec_cost_sp
2091int _nc_msec_cost_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002092 SCREEN *sp,
2093 const char *const cap,
Steve Kondikae271bc2015-11-15 02:50:53 +01002094 int affcnt)
2095 { return(*(int *)0); }
2096
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302097#undef _nc_msec_cost
2098int _nc_msec_cost(
micky3879b9f5e72025-07-08 18:04:53 -04002099 const char *const cap,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302100 int affcnt)
2101 { return(*(int *)0); }
2102
Steve Kondikae271bc2015-11-15 02:50:53 +01002103#undef _nc_mvcur_resume_sp
2104void _nc_mvcur_resume_sp(
2105 SCREEN *sp)
2106 { /* void */ }
2107
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302108#undef _nc_mvcur_resume
2109void _nc_mvcur_resume(void)
2110 { /* void */ }
2111
Steve Kondikae271bc2015-11-15 02:50:53 +01002112#undef _nc_mvcur_init_sp
2113void _nc_mvcur_init_sp(
2114 SCREEN *sp)
2115 { /* void */ }
2116
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302117#undef _nc_mvcur_init
2118void _nc_mvcur_init(void)
2119 { /* void */ }
2120
Steve Kondikae271bc2015-11-15 02:50:53 +01002121#undef _nc_mvcur_wrap_sp
2122void _nc_mvcur_wrap_sp(
2123 SCREEN *sp)
2124 { /* void */ }
2125
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302126#undef _nc_mvcur_wrap
2127void _nc_mvcur_wrap(void)
2128 { /* void */ }
2129
Steve Kondikae271bc2015-11-15 02:50:53 +01002130#undef _nc_mvcur_sp
2131int _nc_mvcur_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002132 SCREEN *sp,
2133 int yold,
2134 int xold,
2135 int ynew,
Steve Kondikae271bc2015-11-15 02:50:53 +01002136 int xnew)
2137 { return(*(int *)0); }
2138
2139#undef _nc_mvcur
2140int _nc_mvcur(
micky3879b9f5e72025-07-08 18:04:53 -04002141 int yold,
2142 int xold,
2143 int ynew,
Steve Kondikae271bc2015-11-15 02:50:53 +01002144 int xnew)
2145 { return(*(int *)0); }
2146
2147#undef mvcur_sp
2148int mvcur_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002149 SCREEN *sp,
2150 int yold,
2151 int xold,
2152 int ynew,
Steve Kondikae271bc2015-11-15 02:50:53 +01002153 int xnew)
2154 { return(*(int *)0); }
2155
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302156#undef mvcur
2157int mvcur(
micky3879b9f5e72025-07-08 18:04:53 -04002158 int yold,
2159 int xold,
2160 int ynew,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302161 int xnew)
2162 { return(*(int *)0); }
2163
2164#undef _nc_optimize_enable
2165int _nc_optimize_enable;
2166
2167/* ./base/lib_mvwin.c */
2168
2169#undef mvwin
2170int mvwin(
micky3879b9f5e72025-07-08 18:04:53 -04002171 WINDOW *win,
2172 int by,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302173 int bx)
2174 { return(*(int *)0); }
2175
2176/* ./base/lib_newterm.c */
2177
Steve Kondikae271bc2015-11-15 02:50:53 +01002178#undef filter_sp
2179void filter_sp(
2180 SCREEN *sp)
2181 { /* void */ }
2182
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302183#undef filter
2184void filter(void)
2185 { /* void */ }
2186
Steve Kondikae271bc2015-11-15 02:50:53 +01002187#undef nofilter_sp
2188void nofilter_sp(
2189 SCREEN *sp)
2190 { /* void */ }
2191
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302192#undef nofilter
2193void nofilter(void)
2194 { /* void */ }
2195
Steve Kondikae271bc2015-11-15 02:50:53 +01002196#undef newterm_sp
2197SCREEN *newterm_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002198 SCREEN *sp,
2199 const char *name,
2200 FILE *ofp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002201 FILE *ifp)
2202 { return(*(SCREEN **)0); }
2203
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302204#undef newterm
2205SCREEN *newterm(
micky3879b9f5e72025-07-08 18:04:53 -04002206 const char *name,
2207 FILE *ofp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302208 FILE *ifp)
2209 { return(*(SCREEN **)0); }
2210
2211/* ./base/lib_newwin.c */
2212
2213#undef _nc_freewin
2214int _nc_freewin(
2215 WINDOW *win)
2216 { return(*(int *)0); }
2217
Steve Kondikae271bc2015-11-15 02:50:53 +01002218#undef newwin_sp
2219WINDOW *newwin_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002220 SCREEN *sp,
2221 int num_lines,
2222 int num_columns,
2223 int begy,
Steve Kondikae271bc2015-11-15 02:50:53 +01002224 int begx)
2225 { return(*(WINDOW **)0); }
2226
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302227#undef newwin
2228WINDOW *newwin(
micky3879b9f5e72025-07-08 18:04:53 -04002229 int num_lines,
2230 int num_columns,
2231 int begy,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302232 int begx)
2233 { return(*(WINDOW **)0); }
2234
2235#undef derwin
2236WINDOW *derwin(
micky3879b9f5e72025-07-08 18:04:53 -04002237 WINDOW *orig,
2238 int num_lines,
2239 int num_columns,
2240 int begy,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302241 int begx)
2242 { return(*(WINDOW **)0); }
2243
2244#undef subwin
2245WINDOW *subwin(
micky3879b9f5e72025-07-08 18:04:53 -04002246 WINDOW *w,
2247 int l,
2248 int c,
2249 int y,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302250 int x)
2251 { return(*(WINDOW **)0); }
2252
Steve Kondikae271bc2015-11-15 02:50:53 +01002253#undef _nc_makenew_sp
2254WINDOW *_nc_makenew_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002255 SCREEN *sp,
2256 int num_lines,
2257 int num_columns,
2258 int begy,
2259 int begx,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302260 int flags)
2261 { return(*(WINDOW **)0); }
2262
Steve Kondikae271bc2015-11-15 02:50:53 +01002263#undef _nc_curscr_of
2264WINDOW *_nc_curscr_of(
2265 SCREEN *sp)
2266 { return(*(WINDOW **)0); }
2267
2268#undef _nc_newscr_of
2269WINDOW *_nc_newscr_of(
2270 SCREEN *sp)
2271 { return(*(WINDOW **)0); }
2272
2273#undef _nc_stdscr_of
2274WINDOW *_nc_stdscr_of(
2275 SCREEN *sp)
2276 { return(*(WINDOW **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302277
2278/* ./base/lib_nl.c */
2279
Steve Kondikae271bc2015-11-15 02:50:53 +01002280#undef nl_sp
2281int nl_sp(
2282 SCREEN *sp)
2283 { return(*(int *)0); }
2284
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302285#undef nl
2286int nl(void)
2287 { return(*(int *)0); }
2288
Steve Kondikae271bc2015-11-15 02:50:53 +01002289#undef nonl_sp
2290int nonl_sp(
2291 SCREEN *sp)
2292 { return(*(int *)0); }
2293
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302294#undef nonl
2295int nonl(void)
2296 { return(*(int *)0); }
2297
2298/* ./base/lib_overlay.c */
2299
2300#undef overlay
2301int overlay(
micky3879b9f5e72025-07-08 18:04:53 -04002302 const WINDOW *win1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302303 WINDOW *win2)
2304 { return(*(int *)0); }
2305
2306#undef overwrite
2307int overwrite(
micky3879b9f5e72025-07-08 18:04:53 -04002308 const WINDOW *win1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302309 WINDOW *win2)
2310 { return(*(int *)0); }
2311
2312#undef copywin
2313int copywin(
micky3879b9f5e72025-07-08 18:04:53 -04002314 const WINDOW *src,
2315 WINDOW *dst,
2316 int sminrow,
2317 int smincol,
2318 int dminrow,
2319 int dmincol,
2320 int dmaxrow,
2321 int dmaxcol,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302322 int over)
2323 { return(*(int *)0); }
2324
2325/* ./base/lib_pad.c */
2326
Steve Kondikae271bc2015-11-15 02:50:53 +01002327#undef newpad_sp
2328WINDOW *newpad_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002329 SCREEN *sp,
2330 int l,
Steve Kondikae271bc2015-11-15 02:50:53 +01002331 int c)
2332 { return(*(WINDOW **)0); }
2333
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302334#undef newpad
2335WINDOW *newpad(
micky3879b9f5e72025-07-08 18:04:53 -04002336 int l,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302337 int c)
2338 { return(*(WINDOW **)0); }
2339
2340#undef subpad
2341WINDOW *subpad(
micky3879b9f5e72025-07-08 18:04:53 -04002342 WINDOW *orig,
2343 int l,
2344 int c,
2345 int begy,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302346 int begx)
2347 { return(*(WINDOW **)0); }
2348
2349#undef prefresh
2350int prefresh(
micky3879b9f5e72025-07-08 18:04:53 -04002351 WINDOW *win,
2352 int pminrow,
2353 int pmincol,
2354 int sminrow,
2355 int smincol,
2356 int smaxrow,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302357 int smaxcol)
2358 { return(*(int *)0); }
2359
2360#undef pnoutrefresh
2361int pnoutrefresh(
micky3879b9f5e72025-07-08 18:04:53 -04002362 WINDOW *win,
2363 int pminrow,
2364 int pmincol,
2365 int sminrow,
2366 int smincol,
2367 int smaxrow,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302368 int smaxcol)
2369 { return(*(int *)0); }
2370
2371#undef pechochar
2372int pechochar(
micky3879b9f5e72025-07-08 18:04:53 -04002373 WINDOW *pad,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302374 const chtype ch)
2375 { return(*(int *)0); }
2376
2377/* ./base/lib_printw.c */
2378
2379#undef printw
2380int printw(
micky3879b9f5e72025-07-08 18:04:53 -04002381 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302382 ...)
2383 { return(*(int *)0); }
2384
2385#undef wprintw
2386int wprintw(
micky3879b9f5e72025-07-08 18:04:53 -04002387 WINDOW *win,
2388 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302389 ...)
2390 { return(*(int *)0); }
2391
2392#undef mvprintw
2393int mvprintw(
micky3879b9f5e72025-07-08 18:04:53 -04002394 int y,
2395 int x,
2396 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302397 ...)
2398 { return(*(int *)0); }
2399
2400#undef mvwprintw
2401int mvwprintw(
micky3879b9f5e72025-07-08 18:04:53 -04002402 WINDOW *win,
2403 int y,
2404 int x,
2405 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302406 ...)
2407 { return(*(int *)0); }
2408
2409#undef vwprintw
2410int vwprintw(
micky3879b9f5e72025-07-08 18:04:53 -04002411 WINDOW *win,
2412 const char *fmt,
2413 va_list argp)
2414 { return(*(int *)0); }
2415
2416#undef vw_printw
2417int vw_printw(
2418 WINDOW *win,
2419 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302420 va_list argp)
2421 { return(*(int *)0); }
2422
2423/* ./base/lib_redrawln.c */
2424
2425#undef wredrawln
2426int wredrawln(
micky3879b9f5e72025-07-08 18:04:53 -04002427 WINDOW *win,
2428 int beg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302429 int num)
2430 { return(*(int *)0); }
2431
2432/* ./base/lib_refresh.c */
2433
2434#undef wrefresh
2435int wrefresh(
2436 WINDOW *win)
2437 { return(*(int *)0); }
2438
2439#undef wnoutrefresh
2440int wnoutrefresh(
2441 WINDOW *win)
2442 { return(*(int *)0); }
2443
2444/* ./base/lib_restart.c */
2445
Steve Kondikae271bc2015-11-15 02:50:53 +01002446#undef restartterm_sp
2447int restartterm_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002448 SCREEN *sp,
2449 const char *termp,
2450 int filenum,
Steve Kondikae271bc2015-11-15 02:50:53 +01002451 int *errret)
2452 { return(*(int *)0); }
2453
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302454#undef restartterm
2455int restartterm(
micky3879b9f5e72025-07-08 18:04:53 -04002456 const char *termp,
2457 int filenum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302458 int *errret)
2459 { return(*(int *)0); }
2460
2461/* ./base/lib_scanw.c */
2462
2463#undef vwscanw
2464int vwscanw(
micky3879b9f5e72025-07-08 18:04:53 -04002465 WINDOW *win,
2466 const char *fmt,
2467 va_list argp)
2468 { return(*(int *)0); }
2469
2470#undef vw_scanw
2471int vw_scanw(
2472 WINDOW *win,
2473 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302474 va_list argp)
2475 { return(*(int *)0); }
2476
2477#undef scanw
2478int scanw(
micky3879b9f5e72025-07-08 18:04:53 -04002479 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302480 ...)
2481 { return(*(int *)0); }
2482
2483#undef wscanw
2484int wscanw(
micky3879b9f5e72025-07-08 18:04:53 -04002485 WINDOW *win,
2486 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302487 ...)
2488 { return(*(int *)0); }
2489
2490#undef mvscanw
2491int mvscanw(
micky3879b9f5e72025-07-08 18:04:53 -04002492 int y,
2493 int x,
2494 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302495 ...)
2496 { return(*(int *)0); }
2497
2498#undef mvwscanw
2499int mvwscanw(
micky3879b9f5e72025-07-08 18:04:53 -04002500 WINDOW *win,
2501 int y,
2502 int x,
2503 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302504 ...)
2505 { return(*(int *)0); }
2506
2507/* ./base/lib_screen.c */
2508
Steve Kondikae271bc2015-11-15 02:50:53 +01002509#undef getwin_sp
2510WINDOW *getwin_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002511 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002512 FILE *filep)
2513 { return(*(WINDOW **)0); }
2514
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302515#undef getwin
2516WINDOW *getwin(
2517 FILE *filep)
2518 { return(*(WINDOW **)0); }
2519
2520#undef putwin
2521int putwin(
micky3879b9f5e72025-07-08 18:04:53 -04002522 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302523 FILE *filep)
2524 { return(*(int *)0); }
2525
Steve Kondikae271bc2015-11-15 02:50:53 +01002526#undef scr_restore_sp
2527int scr_restore_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002528 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002529 const char *file)
2530 { return(*(int *)0); }
2531
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302532#undef scr_restore
2533int scr_restore(
2534 const char *file)
2535 { return(*(int *)0); }
2536
2537#undef scr_dump
2538int scr_dump(
2539 const char *file)
2540 { return(*(int *)0); }
2541
Steve Kondikae271bc2015-11-15 02:50:53 +01002542#undef scr_init_sp
2543int scr_init_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002544 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002545 const char *file)
2546 { return(*(int *)0); }
2547
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302548#undef scr_init
2549int scr_init(
2550 const char *file)
2551 { return(*(int *)0); }
2552
Steve Kondikae271bc2015-11-15 02:50:53 +01002553#undef scr_set_sp
2554int scr_set_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002555 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002556 const char *file)
2557 { return(*(int *)0); }
2558
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302559#undef scr_set
2560int scr_set(
2561 const char *file)
2562 { return(*(int *)0); }
2563
2564/* ./base/lib_scroll.c */
2565
2566#undef _nc_scroll_window
2567void _nc_scroll_window(
micky3879b9f5e72025-07-08 18:04:53 -04002568 WINDOW *win,
2569 int const n,
2570 int const top,
2571 int const bottom,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302572 cchar_t blank)
2573 { /* void */ }
2574
2575#undef wscrl
2576int wscrl(
micky3879b9f5e72025-07-08 18:04:53 -04002577 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302578 int n)
2579 { return(*(int *)0); }
2580
2581/* ./base/lib_scrollok.c */
2582
2583#undef scrollok
2584int scrollok(
micky3879b9f5e72025-07-08 18:04:53 -04002585 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302586 NCURSES_BOOL flag)
2587 { return(*(int *)0); }
2588
2589/* ./base/lib_scrreg.c */
2590
2591#undef wsetscrreg
2592int wsetscrreg(
micky3879b9f5e72025-07-08 18:04:53 -04002593 WINDOW *win,
2594 int top,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302595 int bottom)
2596 { return(*(int *)0); }
2597
2598/* ./base/lib_set_term.c */
2599
2600#undef set_term
2601SCREEN *set_term(
2602 SCREEN *screenp)
2603 { return(*(SCREEN **)0); }
2604
2605#undef delscreen
2606void delscreen(
2607 SCREEN *sp)
2608 { /* void */ }
2609
Steve Kondikae271bc2015-11-15 02:50:53 +01002610#undef _nc_setupscreen_sp
2611int _nc_setupscreen_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002612 SCREEN **spp,
2613 int slines,
2614 int scolumns,
2615 FILE *output,
2616 int filtered,
Steve Kondikae271bc2015-11-15 02:50:53 +01002617 int slk_format)
2618 { return(*(int *)0); }
2619
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302620#undef _nc_setupscreen
2621int _nc_setupscreen(
micky3879b9f5e72025-07-08 18:04:53 -04002622 int slines,
2623 int scolumns,
2624 FILE *output,
2625 int filtered,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302626 int slk_format)
2627 { return(*(int *)0); }
2628
Steve Kondikae271bc2015-11-15 02:50:53 +01002629#undef _nc_ripoffline_sp
2630int _nc_ripoffline_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002631 SCREEN *sp,
2632 int line,
Steve Kondikae271bc2015-11-15 02:50:53 +01002633 int (*init)(
micky3879b9f5e72025-07-08 18:04:53 -04002634 WINDOW *p1,
Steve Kondikae271bc2015-11-15 02:50:53 +01002635 int p2))
2636 { return(*(int *)0); }
2637
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302638#undef _nc_ripoffline
2639int _nc_ripoffline(
micky3879b9f5e72025-07-08 18:04:53 -04002640 int line,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302641 int (*init)(
micky3879b9f5e72025-07-08 18:04:53 -04002642 WINDOW *p1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302643 int p2))
2644 { return(*(int *)0); }
2645
Steve Kondikae271bc2015-11-15 02:50:53 +01002646#undef ripoffline_sp
2647int ripoffline_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002648 SCREEN *sp,
2649 int line,
Steve Kondikae271bc2015-11-15 02:50:53 +01002650 int (*init)(
micky3879b9f5e72025-07-08 18:04:53 -04002651 WINDOW *p1,
Steve Kondikae271bc2015-11-15 02:50:53 +01002652 int p2))
2653 { return(*(int *)0); }
2654
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302655#undef ripoffline
2656int ripoffline(
micky3879b9f5e72025-07-08 18:04:53 -04002657 int line,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302658 int (*init)(
micky3879b9f5e72025-07-08 18:04:53 -04002659 WINDOW *p1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302660 int p2))
2661 { return(*(int *)0); }
2662
2663/* ./base/lib_slk.c */
2664
Steve Kondikae271bc2015-11-15 02:50:53 +01002665#undef _nc_format_slks
2666int _nc_format_slks(
micky3879b9f5e72025-07-08 18:04:53 -04002667 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002668 int cols)
2669 { return(*(int *)0); }
2670
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302671#undef _nc_slk_initialize
2672int _nc_slk_initialize(
micky3879b9f5e72025-07-08 18:04:53 -04002673 WINDOW *stwin,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302674 int cols)
2675 { return(*(int *)0); }
2676
Steve Kondikae271bc2015-11-15 02:50:53 +01002677#undef slk_restore_sp
2678int slk_restore_sp(
2679 SCREEN *sp)
2680 { return(*(int *)0); }
2681
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302682#undef slk_restore
2683int slk_restore(void)
2684 { return(*(int *)0); }
2685
2686/* ./base/lib_slkatr_set.c */
2687
Steve Kondikae271bc2015-11-15 02:50:53 +01002688#undef slk_attr_set_sp
2689int slk_attr_set_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002690 SCREEN *sp,
2691 const attr_t attr,
2692 short pair_arg,
Steve Kondikae271bc2015-11-15 02:50:53 +01002693 void *opts)
2694 { return(*(int *)0); }
2695
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302696#undef slk_attr_set
2697int slk_attr_set(
micky3879b9f5e72025-07-08 18:04:53 -04002698 const attr_t attr,
2699 short pair_arg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302700 void *opts)
2701 { return(*(int *)0); }
2702
2703/* ./base/lib_slkatrof.c */
2704
Steve Kondikae271bc2015-11-15 02:50:53 +01002705#undef slk_attroff_sp
2706int slk_attroff_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002707 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002708 const chtype attr)
2709 { return(*(int *)0); }
2710
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302711#undef slk_attroff
2712int slk_attroff(
2713 const chtype attr)
2714 { return(*(int *)0); }
2715
2716/* ./base/lib_slkatron.c */
2717
Steve Kondikae271bc2015-11-15 02:50:53 +01002718#undef slk_attron_sp
2719int slk_attron_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002720 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002721 const chtype attr)
2722 { return(*(int *)0); }
2723
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302724#undef slk_attron
2725int slk_attron(
2726 const chtype attr)
2727 { return(*(int *)0); }
2728
2729/* ./base/lib_slkatrset.c */
2730
Steve Kondikae271bc2015-11-15 02:50:53 +01002731#undef slk_attrset_sp
2732int slk_attrset_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002733 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002734 const chtype attr)
2735 { return(*(int *)0); }
2736
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302737#undef slk_attrset
2738int slk_attrset(
2739 const chtype attr)
2740 { return(*(int *)0); }
2741
2742/* ./base/lib_slkattr.c */
2743
Steve Kondikae271bc2015-11-15 02:50:53 +01002744#undef slk_attr_sp
2745attr_t slk_attr_sp(
2746 SCREEN *sp)
2747 { return(*(attr_t *)0); }
2748
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302749#undef slk_attr
2750attr_t slk_attr(void)
2751 { return(*(attr_t *)0); }
2752
2753/* ./base/lib_slkclear.c */
2754
Steve Kondikae271bc2015-11-15 02:50:53 +01002755#undef slk_clear_sp
2756int slk_clear_sp(
2757 SCREEN *sp)
2758 { return(*(int *)0); }
2759
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302760#undef slk_clear
2761int slk_clear(void)
2762 { return(*(int *)0); }
2763
2764/* ./base/lib_slkcolor.c */
2765
Steve Kondikae271bc2015-11-15 02:50:53 +01002766#undef slk_color_sp
2767int slk_color_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002768 SCREEN *sp,
2769 short pair_arg)
Steve Kondikae271bc2015-11-15 02:50:53 +01002770 { return(*(int *)0); }
2771
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302772#undef slk_color
2773int slk_color(
micky3879b9f5e72025-07-08 18:04:53 -04002774 short pair_arg)
2775 { return(*(int *)0); }
2776
2777#undef extended_slk_color_sp
2778int extended_slk_color_sp(
2779 SCREEN *sp,
2780 int pair_arg)
2781 { return(*(int *)0); }
2782
2783#undef extended_slk_color
2784int extended_slk_color(
2785 int pair_arg)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302786 { return(*(int *)0); }
2787
2788/* ./base/lib_slkinit.c */
2789
Steve Kondikae271bc2015-11-15 02:50:53 +01002790#undef slk_init_sp
2791int slk_init_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002792 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002793 int format)
2794 { return(*(int *)0); }
2795
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302796#undef slk_init
2797int slk_init(
2798 int format)
2799 { return(*(int *)0); }
2800
2801/* ./base/lib_slklab.c */
2802
Steve Kondikae271bc2015-11-15 02:50:53 +01002803#undef slk_label_sp
2804char *slk_label_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002805 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002806 int n)
2807 { return(*(char **)0); }
2808
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302809#undef slk_label
2810char *slk_label(
2811 int n)
2812 { return(*(char **)0); }
2813
2814/* ./base/lib_slkrefr.c */
2815
Steve Kondikae271bc2015-11-15 02:50:53 +01002816#undef slk_noutrefresh_sp
2817int slk_noutrefresh_sp(
2818 SCREEN *sp)
2819 { return(*(int *)0); }
2820
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302821#undef slk_noutrefresh
2822int slk_noutrefresh(void)
2823 { return(*(int *)0); }
2824
Steve Kondikae271bc2015-11-15 02:50:53 +01002825#undef slk_refresh_sp
2826int slk_refresh_sp(
2827 SCREEN *sp)
2828 { return(*(int *)0); }
2829
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302830#undef slk_refresh
2831int slk_refresh(void)
2832 { return(*(int *)0); }
2833
2834/* ./base/lib_slkset.c */
2835
Steve Kondikae271bc2015-11-15 02:50:53 +01002836#undef slk_set_sp
2837int slk_set_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002838 SCREEN *sp,
2839 int i,
2840 const char *astr,
Steve Kondikae271bc2015-11-15 02:50:53 +01002841 int format)
2842 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302843
2844#undef slk_set
2845int slk_set(
micky3879b9f5e72025-07-08 18:04:53 -04002846 int i,
2847 const char *astr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302848 int format)
2849 { return(*(int *)0); }
2850
2851/* ./base/lib_slktouch.c */
2852
Steve Kondikae271bc2015-11-15 02:50:53 +01002853#undef slk_touch_sp
2854int slk_touch_sp(
2855 SCREEN *sp)
2856 { return(*(int *)0); }
2857
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302858#undef slk_touch
2859int slk_touch(void)
2860 { return(*(int *)0); }
2861
2862/* ./base/lib_touch.c */
2863
2864#undef is_linetouched
2865NCURSES_BOOL is_linetouched(
micky3879b9f5e72025-07-08 18:04:53 -04002866 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302867 int line)
2868 { return(*(NCURSES_BOOL *)0); }
2869
2870#undef is_wintouched
2871NCURSES_BOOL is_wintouched(
2872 WINDOW *win)
2873 { return(*(NCURSES_BOOL *)0); }
2874
2875#undef wtouchln
2876int wtouchln(
micky3879b9f5e72025-07-08 18:04:53 -04002877 WINDOW *win,
2878 int y,
2879 int n,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302880 int changed)
2881 { return(*(int *)0); }
2882
2883/* ./trace/lib_tracedmp.c */
2884
2885#undef _tracedump
2886void _tracedump(
micky3879b9f5e72025-07-08 18:04:53 -04002887 const char *name,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302888 WINDOW *win)
2889 { /* void */ }
2890
2891/* ./trace/lib_tracemse.c */
2892
Steve Kondikae271bc2015-11-15 02:50:53 +01002893#undef _nc_trace_mmask_t
2894char *_nc_trace_mmask_t(
micky3879b9f5e72025-07-08 18:04:53 -04002895 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002896 mmask_t code)
2897 { return(*(char **)0); }
2898
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302899#undef _nc_tracemouse
2900char *_nc_tracemouse(
micky3879b9f5e72025-07-08 18:04:53 -04002901 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302902 MEVENT const *ep)
2903 { return(*(char **)0); }
2904
Steve Kondikae271bc2015-11-15 02:50:53 +01002905#undef _nc_retrace_mmask_t
2906mmask_t _nc_retrace_mmask_t(
micky3879b9f5e72025-07-08 18:04:53 -04002907 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002908 mmask_t code)
2909 { return(*(mmask_t *)0); }
2910
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302911#undef _tracemouse
2912char *_tracemouse(
2913 MEVENT const *ep)
2914 { return(*(char **)0); }
2915
2916/* ./tty/lib_tstp.c */
2917
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302918#undef _nc_signal_handler
2919void _nc_signal_handler(
Steve Kondikae271bc2015-11-15 02:50:53 +01002920 int enable)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302921 { /* void */ }
2922
2923/* ./base/lib_ungetch.c */
2924
2925#undef _nc_fifo_dump
2926void _nc_fifo_dump(
2927 SCREEN *sp)
2928 { /* void */ }
2929
Steve Kondikae271bc2015-11-15 02:50:53 +01002930#undef ungetch_sp
2931int ungetch_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002932 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302933 int ch)
2934 { return(*(int *)0); }
2935
2936#undef ungetch
2937int ungetch(
2938 int ch)
2939 { return(*(int *)0); }
2940
2941/* ./tty/lib_vidattr.c */
2942
Steve Kondikae271bc2015-11-15 02:50:53 +01002943#undef vidputs_sp
2944int vidputs_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002945 SCREEN *sp,
2946 chtype newmode,
Steve Kondikae271bc2015-11-15 02:50:53 +01002947 NCURSES_OUTC_sp outc)
2948 { return(*(int *)0); }
2949
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302950#undef vidputs
2951int vidputs(
micky3879b9f5e72025-07-08 18:04:53 -04002952 chtype newmode,
Steve Kondikae271bc2015-11-15 02:50:53 +01002953 NCURSES_OUTC outc)
2954 { return(*(int *)0); }
2955
2956#undef vidattr_sp
2957int vidattr_sp(
micky3879b9f5e72025-07-08 18:04:53 -04002958 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01002959 chtype newmode)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302960 { return(*(int *)0); }
2961
2962#undef vidattr
2963int vidattr(
2964 chtype newmode)
2965 { return(*(int *)0); }
2966
Steve Kondikae271bc2015-11-15 02:50:53 +01002967#undef termattrs_sp
2968chtype termattrs_sp(
2969 SCREEN *sp)
2970 { return(*(chtype *)0); }
2971
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302972#undef termattrs
2973chtype termattrs(void)
2974 { return(*(chtype *)0); }
2975
2976/* ./base/lib_vline.c */
2977
2978#undef wvline
2979int wvline(
micky3879b9f5e72025-07-08 18:04:53 -04002980 WINDOW *win,
2981 chtype ch,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302982 int n)
2983 { return(*(int *)0); }
2984
2985/* ./base/lib_wattroff.c */
2986
2987#undef wattr_off
2988int wattr_off(
micky3879b9f5e72025-07-08 18:04:53 -04002989 WINDOW *win,
2990 attr_t at,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302991 void *opts)
2992 { return(*(int *)0); }
2993
2994/* ./base/lib_wattron.c */
2995
2996#undef wattr_on
2997int wattr_on(
micky3879b9f5e72025-07-08 18:04:53 -04002998 WINDOW *win,
2999 attr_t at,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303000 void *opts)
3001 { return(*(int *)0); }
3002
3003/* ./base/lib_winch.c */
3004
3005#undef winch
3006chtype winch(
3007 WINDOW *win)
3008 { return(*(chtype *)0); }
3009
3010/* ./base/lib_window.c */
3011
3012#undef _nc_synchook
3013void _nc_synchook(
3014 WINDOW *win)
3015 { /* void */ }
3016
3017#undef mvderwin
3018int mvderwin(
micky3879b9f5e72025-07-08 18:04:53 -04003019 WINDOW *win,
3020 int y,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303021 int x)
3022 { return(*(int *)0); }
3023
3024#undef syncok
3025int syncok(
micky3879b9f5e72025-07-08 18:04:53 -04003026 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303027 NCURSES_BOOL bf)
3028 { return(*(int *)0); }
3029
3030#undef wsyncup
3031void wsyncup(
3032 WINDOW *win)
3033 { /* void */ }
3034
3035#undef wsyncdown
3036void wsyncdown(
3037 WINDOW *win)
3038 { /* void */ }
3039
3040#undef wcursyncup
3041void wcursyncup(
3042 WINDOW *win)
3043 { /* void */ }
3044
3045#undef dupwin
3046WINDOW *dupwin(
3047 WINDOW *win)
3048 { return(*(WINDOW **)0); }
3049
3050/* ./base/nc_panel.c */
3051
Steve Kondikae271bc2015-11-15 02:50:53 +01003052#undef _nc_panelhook_sp
3053struct panelhook *_nc_panelhook_sp(
3054 SCREEN *sp)
3055 { return(*(struct panelhook **)0); }
3056
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303057#undef _nc_panelhook
3058struct panelhook *_nc_panelhook(void)
3059 { return(*(struct panelhook **)0); }
3060
3061/* ./base/safe_sprintf.c */
3062
Steve Kondikae271bc2015-11-15 02:50:53 +01003063#undef _nc_printf_string_sp
3064char *_nc_printf_string_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003065 SCREEN *sp,
3066 const char *fmt,
Steve Kondikae271bc2015-11-15 02:50:53 +01003067 va_list ap)
3068 { return(*(char **)0); }
3069
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303070#undef _nc_printf_string
3071char *_nc_printf_string(
micky3879b9f5e72025-07-08 18:04:53 -04003072 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303073 va_list ap)
3074 { return(*(char **)0); }
3075
3076/* ./tty/tty_update.c */
3077
Steve Kondikae271bc2015-11-15 02:50:53 +01003078#undef doupdate_sp
3079int doupdate_sp(
3080 SCREEN *sp)
3081 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303082
3083#undef doupdate
3084int doupdate(void)
3085 { return(*(int *)0); }
3086
Steve Kondikae271bc2015-11-15 02:50:53 +01003087#undef _nc_scrolln_sp
3088int _nc_scrolln_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003089 SCREEN *sp,
3090 int n,
3091 int top,
3092 int bot,
Steve Kondikae271bc2015-11-15 02:50:53 +01003093 int maxy)
3094 { return(*(int *)0); }
3095
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303096#undef _nc_scrolln
3097int _nc_scrolln(
micky3879b9f5e72025-07-08 18:04:53 -04003098 int n,
3099 int top,
3100 int bot,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303101 int maxy)
3102 { return(*(int *)0); }
3103
Steve Kondikae271bc2015-11-15 02:50:53 +01003104#undef _nc_screen_resume_sp
3105void _nc_screen_resume_sp(
3106 SCREEN *sp)
3107 { /* void */ }
3108
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303109#undef _nc_screen_resume
3110void _nc_screen_resume(void)
3111 { /* void */ }
3112
Steve Kondikae271bc2015-11-15 02:50:53 +01003113#undef _nc_screen_init_sp
3114void _nc_screen_init_sp(
3115 SCREEN *sp)
3116 { /* void */ }
3117
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303118#undef _nc_screen_init
3119void _nc_screen_init(void)
3120 { /* void */ }
3121
Steve Kondikae271bc2015-11-15 02:50:53 +01003122#undef _nc_screen_wrap_sp
3123void _nc_screen_wrap_sp(
3124 SCREEN *sp)
3125 { /* void */ }
3126
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303127#undef _nc_screen_wrap
3128void _nc_screen_wrap(void)
3129 { /* void */ }
3130
Steve Kondikae271bc2015-11-15 02:50:53 +01003131#undef _nc_do_xmc_glitch_sp
3132void _nc_do_xmc_glitch_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003133 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003134 attr_t previous)
3135 { /* void */ }
3136
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303137#undef _nc_do_xmc_glitch
3138void _nc_do_xmc_glitch(
3139 attr_t previous)
3140 { /* void */ }
3141
3142/* ./trace/varargs.c */
3143
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303144#undef _nc_varargs
3145char *_nc_varargs(
micky3879b9f5e72025-07-08 18:04:53 -04003146 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303147 va_list ap)
3148 { return(*(char **)0); }
3149
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303150/* ./base/vsscanf.c */
3151
3152#undef _nc_vsscanf
3153void _nc_vsscanf(void)
3154 { /* void */ }
3155
3156/* ./base/lib_freeall.c */
3157
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303158#undef _nc_freeall
3159void _nc_freeall(void)
3160 { /* void */ }
3161
Steve Kondikae271bc2015-11-15 02:50:53 +01003162#undef _nc_free_and_exit_sp
3163void _nc_free_and_exit_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003164 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003165 int code)
3166 { /* void */ }
3167
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303168#undef _nc_free_and_exit
3169void _nc_free_and_exit(
3170 int code)
3171 { /* void */ }
3172
micky3879b9f5e72025-07-08 18:04:53 -04003173#undef exit_curses
3174void exit_curses(
3175 int code)
3176 { /* void */ }
3177
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303178/* ./widechar/charable.c */
3179
3180#undef _nc_is_charable
3181NCURSES_BOOL _nc_is_charable(
3182 wchar_t ch)
3183 { return(*(NCURSES_BOOL *)0); }
3184
3185#undef _nc_to_char
3186int _nc_to_char(
3187 wint_t ch)
3188 { return(*(int *)0); }
3189
3190#undef _nc_to_widechar
3191wint_t _nc_to_widechar(
3192 int ch)
3193 { return(*(wint_t *)0); }
3194
3195/* ./widechar/lib_add_wch.c */
3196
3197#undef wadd_wch
3198int wadd_wch(
micky3879b9f5e72025-07-08 18:04:53 -04003199 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303200 const cchar_t *wch)
3201 { return(*(int *)0); }
3202
3203#undef wecho_wchar
3204int wecho_wchar(
micky3879b9f5e72025-07-08 18:04:53 -04003205 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303206 const cchar_t *wch)
3207 { return(*(int *)0); }
3208
3209/* ./widechar/lib_box_set.c */
3210
3211#undef wborder_set
3212int wborder_set(
micky3879b9f5e72025-07-08 18:04:53 -04003213 WINDOW *win,
3214 const cchar_t *ls,
3215 const cchar_t *rs,
3216 const cchar_t *ts,
3217 const cchar_t *bs,
3218 const cchar_t *tl,
3219 const cchar_t *tr,
3220 const cchar_t *bl,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303221 const cchar_t *br)
3222 { return(*(int *)0); }
3223
3224/* ./widechar/lib_cchar.c */
3225
3226#undef setcchar
3227int setcchar(
micky3879b9f5e72025-07-08 18:04:53 -04003228 cchar_t *wcval,
3229 const wchar_t *wch,
3230 const attr_t attrs,
3231 short pair_arg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303232 const void *opts)
3233 { return(*(int *)0); }
3234
3235#undef getcchar
3236int getcchar(
micky3879b9f5e72025-07-08 18:04:53 -04003237 const cchar_t *wcval,
3238 wchar_t *wch,
3239 attr_t *attrs,
3240 short *pair_arg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303241 void *opts)
3242 { return(*(int *)0); }
3243
3244/* ./widechar/lib_erasewchar.c */
3245
micky3879b9f5e72025-07-08 18:04:53 -04003246#undef erasewchar_sp
3247int erasewchar_sp(
3248 SCREEN *sp,
3249 wchar_t *wch)
3250 { return(*(int *)0); }
3251
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303252#undef erasewchar
3253int erasewchar(
3254 wchar_t *wch)
3255 { return(*(int *)0); }
3256
micky3879b9f5e72025-07-08 18:04:53 -04003257#undef killwchar_sp
3258int killwchar_sp(
3259 SCREEN *sp,
3260 wchar_t *wch)
3261 { return(*(int *)0); }
3262
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303263#undef killwchar
3264int killwchar(
3265 wchar_t *wch)
3266 { return(*(int *)0); }
3267
3268/* ./widechar/lib_get_wch.c */
3269
3270#undef wget_wch
3271int wget_wch(
micky3879b9f5e72025-07-08 18:04:53 -04003272 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303273 wint_t *result)
3274 { return(*(int *)0); }
3275
3276/* ./widechar/lib_get_wstr.c */
3277
3278#undef wgetn_wstr
3279int wgetn_wstr(
micky3879b9f5e72025-07-08 18:04:53 -04003280 WINDOW *win,
3281 wint_t *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303282 int maxlen)
3283 { return(*(int *)0); }
3284
3285/* ./widechar/lib_hline_set.c */
3286
3287#undef whline_set
3288int whline_set(
micky3879b9f5e72025-07-08 18:04:53 -04003289 WINDOW *win,
3290 const cchar_t *ch,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303291 int n)
3292 { return(*(int *)0); }
3293
3294/* ./widechar/lib_in_wch.c */
3295
3296#undef win_wch
3297int win_wch(
micky3879b9f5e72025-07-08 18:04:53 -04003298 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303299 cchar_t *wcval)
3300 { return(*(int *)0); }
3301
3302/* ./widechar/lib_in_wchnstr.c */
3303
3304#undef win_wchnstr
3305int win_wchnstr(
micky3879b9f5e72025-07-08 18:04:53 -04003306 WINDOW *win,
3307 cchar_t *wchstr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303308 int n)
3309 { return(*(int *)0); }
3310
3311/* ./widechar/lib_ins_wch.c */
3312
Steve Kondikae271bc2015-11-15 02:50:53 +01003313#undef _nc_insert_wch
3314int _nc_insert_wch(
micky3879b9f5e72025-07-08 18:04:53 -04003315 WINDOW *win,
Steve Kondikae271bc2015-11-15 02:50:53 +01003316 const cchar_t *wch)
3317 { return(*(int *)0); }
3318
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303319#undef wins_wch
3320int wins_wch(
micky3879b9f5e72025-07-08 18:04:53 -04003321 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303322 const cchar_t *wch)
3323 { return(*(int *)0); }
3324
3325#undef wins_nwstr
3326int wins_nwstr(
micky3879b9f5e72025-07-08 18:04:53 -04003327 WINDOW *win,
3328 const wchar_t *wstr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303329 int n)
3330 { return(*(int *)0); }
3331
3332/* ./widechar/lib_inwstr.c */
3333
3334#undef winnwstr
3335int winnwstr(
micky3879b9f5e72025-07-08 18:04:53 -04003336 WINDOW *win,
3337 wchar_t *wstr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303338 int n)
3339 { return(*(int *)0); }
3340
3341#undef winwstr
3342int winwstr(
micky3879b9f5e72025-07-08 18:04:53 -04003343 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303344 wchar_t *wstr)
3345 { return(*(int *)0); }
3346
3347/* ./widechar/lib_key_name.c */
3348
3349#undef key_name
Steve Kondikae271bc2015-11-15 02:50:53 +01003350const char *key_name(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303351 wchar_t c)
Steve Kondikae271bc2015-11-15 02:50:53 +01003352 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303353
3354/* ./widechar/lib_pecho_wchar.c */
3355
3356#undef pecho_wchar
3357int pecho_wchar(
micky3879b9f5e72025-07-08 18:04:53 -04003358 WINDOW *pad,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303359 const cchar_t *wch)
3360 { return(*(int *)0); }
3361
3362/* ./widechar/lib_slk_wset.c */
3363
3364#undef slk_wset
3365int slk_wset(
micky3879b9f5e72025-07-08 18:04:53 -04003366 int i,
3367 const wchar_t *astr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303368 int format)
3369 { return(*(int *)0); }
3370
3371/* ./widechar/lib_unget_wch.c */
3372
3373#undef _nc_wcrtomb
3374size_t _nc_wcrtomb(
micky3879b9f5e72025-07-08 18:04:53 -04003375 char *target,
3376 wchar_t source,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303377 mbstate_t *state)
3378 { return(*(size_t *)0); }
3379
Steve Kondikae271bc2015-11-15 02:50:53 +01003380#undef unget_wch_sp
3381int unget_wch_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003382 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003383 const wchar_t wch)
3384 { return(*(int *)0); }
3385
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303386#undef unget_wch
3387int unget_wch(
3388 const wchar_t wch)
3389 { return(*(int *)0); }
3390
3391/* ./widechar/lib_vid_attr.c */
3392
Steve Kondikae271bc2015-11-15 02:50:53 +01003393#undef vid_puts_sp
3394int vid_puts_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003395 SCREEN *sp,
3396 attr_t newmode,
3397 short pair_arg,
3398 void *opts,
Steve Kondikae271bc2015-11-15 02:50:53 +01003399 NCURSES_OUTC_sp outc)
3400 { return(*(int *)0); }
3401
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303402#undef vid_puts
3403int vid_puts(
micky3879b9f5e72025-07-08 18:04:53 -04003404 attr_t newmode,
3405 short pair_arg,
3406 void *opts,
Steve Kondikae271bc2015-11-15 02:50:53 +01003407 NCURSES_OUTC outc)
3408 { return(*(int *)0); }
3409
3410#undef vid_attr_sp
3411int vid_attr_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003412 SCREEN *sp,
3413 attr_t newmode,
3414 short pair_arg,
Steve Kondikae271bc2015-11-15 02:50:53 +01003415 void *opts)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303416 { return(*(int *)0); }
3417
3418#undef vid_attr
3419int vid_attr(
micky3879b9f5e72025-07-08 18:04:53 -04003420 attr_t newmode,
3421 short pair_arg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303422 void *opts)
3423 { return(*(int *)0); }
3424
Steve Kondikae271bc2015-11-15 02:50:53 +01003425#undef term_attrs_sp
3426attr_t term_attrs_sp(
3427 SCREEN *sp)
3428 { return(*(attr_t *)0); }
3429
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303430#undef term_attrs
3431attr_t term_attrs(void)
3432 { return(*(attr_t *)0); }
3433
3434/* ./widechar/lib_vline_set.c */
3435
3436#undef wvline_set
3437int wvline_set(
micky3879b9f5e72025-07-08 18:04:53 -04003438 WINDOW *win,
3439 const cchar_t *ch,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303440 int n)
3441 { return(*(int *)0); }
3442
3443/* ./widechar/lib_wacs.c */
3444
3445#undef _nc_wacs
3446cchar_t *_nc_wacs;
3447
3448#undef _nc_init_wacs
3449void _nc_init_wacs(void)
3450 { /* void */ }
3451
3452/* ./widechar/lib_wunctrl.c */
3453
Steve Kondikae271bc2015-11-15 02:50:53 +01003454#undef wunctrl_sp
3455wchar_t *wunctrl_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003456 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003457 cchar_t *wc)
3458 { return(*(wchar_t **)0); }
3459
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303460#undef wunctrl
3461wchar_t *wunctrl(
3462 cchar_t *wc)
3463 { return(*(wchar_t **)0); }
3464
3465/* ./expanded.c */
3466
3467#undef _nc_toggle_attr_on
3468void _nc_toggle_attr_on(
micky3879b9f5e72025-07-08 18:04:53 -04003469 attr_t *S,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303470 attr_t at)
3471 { /* void */ }
3472
3473#undef _nc_toggle_attr_off
3474void _nc_toggle_attr_off(
micky3879b9f5e72025-07-08 18:04:53 -04003475 attr_t *S,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303476 attr_t at)
3477 { /* void */ }
3478
Steve Kondikae271bc2015-11-15 02:50:53 +01003479#undef _nc_DelCharCost_sp
3480int _nc_DelCharCost_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003481 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003482 int count)
3483 { return(*(int *)0); }
3484
3485#undef _nc_InsCharCost_sp
3486int _nc_InsCharCost_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003487 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003488 int count)
3489 { return(*(int *)0); }
3490
3491#undef _nc_UpdateAttrs_sp
3492void _nc_UpdateAttrs_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003493 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003494 const cchar_t *c)
3495 { /* void */ }
3496
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303497#undef _nc_DelCharCost
3498int _nc_DelCharCost(
3499 int count)
3500 { return(*(int *)0); }
3501
3502#undef _nc_InsCharCost
3503int _nc_InsCharCost(
3504 int count)
3505 { return(*(int *)0); }
3506
3507#undef _nc_UpdateAttrs
3508void _nc_UpdateAttrs(
Steve Kondikae271bc2015-11-15 02:50:53 +01003509 const cchar_t *c)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303510 { /* void */ }
3511
3512/* ./base/legacy_coding.c */
3513
Steve Kondikae271bc2015-11-15 02:50:53 +01003514#undef use_legacy_coding_sp
3515int use_legacy_coding_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003516 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01003517 int level)
3518 { return(*(int *)0); }
3519
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303520#undef use_legacy_coding
3521int use_legacy_coding(
3522 int level)
3523 { return(*(int *)0); }
3524
3525/* ./base/lib_dft_fgbg.c */
3526
Steve Kondikae271bc2015-11-15 02:50:53 +01003527#undef use_default_colors_sp
3528int use_default_colors_sp(
3529 SCREEN *sp)
3530 { return(*(int *)0); }
3531
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303532#undef use_default_colors
3533int use_default_colors(void)
3534 { return(*(int *)0); }
3535
Steve Kondikae271bc2015-11-15 02:50:53 +01003536#undef assume_default_colors_sp
3537int assume_default_colors_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003538 SCREEN *sp,
3539 int fg,
Steve Kondikae271bc2015-11-15 02:50:53 +01003540 int bg)
3541 { return(*(int *)0); }
3542
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303543#undef assume_default_colors
3544int assume_default_colors(
micky3879b9f5e72025-07-08 18:04:53 -04003545 int fg,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303546 int bg)
3547 { return(*(int *)0); }
3548
3549/* ./tinfo/lib_print.c */
3550
Steve Kondikae271bc2015-11-15 02:50:53 +01003551#undef mcprint_sp
3552int mcprint_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003553 SCREEN *sp,
3554 char *data,
Steve Kondikae271bc2015-11-15 02:50:53 +01003555 int len)
3556 { return(*(int *)0); }
3557
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303558#undef mcprint
3559int mcprint(
micky3879b9f5e72025-07-08 18:04:53 -04003560 char *data,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303561 int len)
3562 { return(*(int *)0); }
3563
micky3879b9f5e72025-07-08 18:04:53 -04003564/* ./base/new_pair.c */
3565
3566#undef _nc_free_ordered_pairs
3567void _nc_free_ordered_pairs(
3568 SCREEN *sp)
3569 { /* void */ }
3570
3571#undef _nc_reset_color_pair
3572void _nc_reset_color_pair(
3573 SCREEN *sp,
3574 int pair,
3575 colorpair_t *next)
3576 { /* void */ }
3577
3578#undef _nc_set_color_pair
3579void _nc_set_color_pair(
3580 SCREEN *sp,
3581 int pair,
3582 int mode)
3583 { /* void */ }
3584
3585#undef _nc_copy_pairs
3586void _nc_copy_pairs(
3587 SCREEN *sp,
3588 colorpair_t *target,
3589 colorpair_t *source,
3590 int length)
3591 { /* void */ }
3592
3593#undef alloc_pair_sp
3594int alloc_pair_sp(
3595 SCREEN *sp,
3596 int fg,
3597 int bg)
3598 { return(*(int *)0); }
3599
3600#undef find_pair_sp
3601int find_pair_sp(
3602 SCREEN *sp,
3603 int fg,
3604 int bg)
3605 { return(*(int *)0); }
3606
3607#undef free_pair_sp
3608int free_pair_sp(
3609 SCREEN *sp,
3610 int pair)
3611 { return(*(int *)0); }
3612
3613#undef alloc_pair
3614int alloc_pair(
3615 int f,
3616 int b)
3617 { return(*(int *)0); }
3618
3619#undef find_pair
3620int find_pair(
3621 int f,
3622 int b)
3623 { return(*(int *)0); }
3624
3625#undef free_pair
3626int free_pair(
3627 int pair)
3628 { return(*(int *)0); }
3629
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303630/* ./base/resizeterm.c */
3631
Steve Kondikae271bc2015-11-15 02:50:53 +01003632#undef is_term_resized_sp
3633NCURSES_BOOL is_term_resized_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003634 SCREEN *sp,
3635 int ToLines,
Steve Kondikae271bc2015-11-15 02:50:53 +01003636 int ToCols)
3637 { return(*(NCURSES_BOOL *)0); }
3638
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303639#undef is_term_resized
3640NCURSES_BOOL is_term_resized(
micky3879b9f5e72025-07-08 18:04:53 -04003641 int ToLines,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303642 int ToCols)
3643 { return(*(NCURSES_BOOL *)0); }
3644
Steve Kondikae271bc2015-11-15 02:50:53 +01003645#undef resize_term_sp
3646int resize_term_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003647 SCREEN *sp,
3648 int ToLines,
Steve Kondikae271bc2015-11-15 02:50:53 +01003649 int ToCols)
3650 { return(*(int *)0); }
3651
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303652#undef resize_term
3653int resize_term(
micky3879b9f5e72025-07-08 18:04:53 -04003654 int ToLines,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303655 int ToCols)
3656 { return(*(int *)0); }
3657
Steve Kondikae271bc2015-11-15 02:50:53 +01003658#undef resizeterm_sp
3659int resizeterm_sp(
micky3879b9f5e72025-07-08 18:04:53 -04003660 SCREEN *sp,
3661 int ToLines,
Steve Kondikae271bc2015-11-15 02:50:53 +01003662 int ToCols)
3663 { return(*(int *)0); }
3664
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303665#undef resizeterm
3666int resizeterm(
micky3879b9f5e72025-07-08 18:04:53 -04003667 int ToLines,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303668 int ToCols)
3669 { return(*(int *)0); }
3670
3671/* ./trace/trace_xnames.c */
3672
3673#undef _nc_trace_xnames
3674void _nc_trace_xnames(
3675 TERMTYPE *tp)
3676 { /* void */ }
3677
3678/* ./tinfo/use_screen.c */
3679
3680#undef use_screen
3681int use_screen(
micky3879b9f5e72025-07-08 18:04:53 -04003682 SCREEN *screen,
3683 NCURSES_SCREEN_CB func,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303684 void *data)
3685 { return(*(int *)0); }
3686
3687/* ./base/use_window.c */
3688
3689#undef use_window
3690int use_window(
micky3879b9f5e72025-07-08 18:04:53 -04003691 WINDOW *win,
3692 NCURSES_WINDOW_CB func,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303693 void *data)
3694 { return(*(int *)0); }
3695
3696/* ./base/wresize.c */
3697
3698#undef wresize
3699int wresize(
micky3879b9f5e72025-07-08 18:04:53 -04003700 WINDOW *win,
3701 int ToLines,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303702 int ToCols)
3703 { return(*(int *)0); }
3704
3705/* ./tinfo/access.c */
3706
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303707#undef _nc_rootname
3708char *_nc_rootname(
3709 char *path)
3710 { return(*(char **)0); }
3711
3712#undef _nc_is_abs_path
3713NCURSES_BOOL _nc_is_abs_path(
3714 const char *path)
3715 { return(*(NCURSES_BOOL *)0); }
3716
3717#undef _nc_pathlast
3718unsigned _nc_pathlast(
3719 const char *path)
3720 { return(*(unsigned *)0); }
3721
3722#undef _nc_basename
3723char *_nc_basename(
3724 char *path)
3725 { return(*(char **)0); }
3726
3727#undef _nc_access
3728int _nc_access(
micky3879b9f5e72025-07-08 18:04:53 -04003729 const char *path,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303730 int mode)
3731 { return(*(int *)0); }
3732
3733#undef _nc_is_dir_path
3734NCURSES_BOOL _nc_is_dir_path(
3735 const char *path)
3736 { return(*(NCURSES_BOOL *)0); }
3737
3738#undef _nc_is_file_path
3739NCURSES_BOOL _nc_is_file_path(
3740 const char *path)
3741 { return(*(NCURSES_BOOL *)0); }
3742
3743#undef _nc_env_access
3744int _nc_env_access(void)
3745 { return(*(int *)0); }
3746
micky3879b9f5e72025-07-08 18:04:53 -04003747#undef _nc_safe_fopen
3748FILE *_nc_safe_fopen(
3749 const char *path,
3750 const char *mode)
3751 { return(*(FILE **)0); }
3752
3753#undef _nc_safe_open3
3754int _nc_safe_open3(
3755 const char *path,
3756 int flags,
3757 mode_t mode)
3758 { return(*(int *)0); }
3759
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303760/* ./tinfo/add_tries.c */
3761
3762#undef _nc_add_to_try
3763int _nc_add_to_try(
micky3879b9f5e72025-07-08 18:04:53 -04003764 TRIES **tree,
3765 const char *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303766 unsigned code)
3767 { return(*(int *)0); }
3768
3769/* ./tinfo/alloc_ttype.c */
3770
3771#undef _nc_align_termtype
3772void _nc_align_termtype(
micky3879b9f5e72025-07-08 18:04:53 -04003773 TERMTYPE2 *to,
3774 TERMTYPE2 *from)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303775 { /* void */ }
3776
3777#undef _nc_copy_termtype
3778void _nc_copy_termtype(
micky3879b9f5e72025-07-08 18:04:53 -04003779 TERMTYPE *dst,
Steve Kondikae271bc2015-11-15 02:50:53 +01003780 const TERMTYPE *src)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303781 { /* void */ }
3782
micky3879b9f5e72025-07-08 18:04:53 -04003783#undef _nc_copy_termtype2
3784void _nc_copy_termtype2(
3785 TERMTYPE2 *dst,
3786 const TERMTYPE2 *src)
3787 { /* void */ }
3788
3789#undef _nc_export_termtype2
3790void _nc_export_termtype2(
3791 TERMTYPE *dst,
3792 const TERMTYPE2 *src)
3793 { /* void */ }
3794
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303795/* ./codes.c */
3796
3797#undef boolcodes
Steve Kondikae271bc2015-11-15 02:50:53 +01003798const char *const boolcodes[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303799#undef numcodes
Steve Kondikae271bc2015-11-15 02:50:53 +01003800const char *const numcodes[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303801#undef strcodes
Steve Kondikae271bc2015-11-15 02:50:53 +01003802const char *const strcodes[] = {0};
3803
3804/* ./comp_captab.c */
3805
3806#undef _nc_get_table
3807const struct name_table_entry *_nc_get_table(
3808 NCURSES_BOOL termcap)
3809 { return(*(const struct name_table_entry **)0); }
3810
3811#undef _nc_get_hash_table
3812const HashValue *_nc_get_hash_table(
3813 NCURSES_BOOL termcap)
3814 { return(*(const HashValue **)0); }
3815
3816#undef _nc_get_alias_table
3817const struct alias *_nc_get_alias_table(
3818 NCURSES_BOOL termcap)
3819 { return(*(const struct alias **)0); }
3820
3821#undef _nc_get_hash_info
3822const HashData *_nc_get_hash_info(
3823 NCURSES_BOOL termcap)
3824 { return(*(const HashData **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303825
3826/* ./tinfo/comp_error.c */
Steve Kondikae271bc2015-11-15 02:50:53 +01003827
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303828#undef _nc_suppress_warnings
3829NCURSES_BOOL _nc_suppress_warnings;
3830#undef _nc_curr_line
3831int _nc_curr_line;
3832#undef _nc_curr_col
3833int _nc_curr_col;
3834
3835#undef _nc_get_source
3836const char *_nc_get_source(void)
3837 { return(*(const char **)0); }
3838
3839#undef _nc_set_source
3840void _nc_set_source(
3841 const char *const name)
3842 { /* void */ }
3843
3844#undef _nc_set_type
3845void _nc_set_type(
3846 const char *const name)
3847 { /* void */ }
3848
3849#undef _nc_get_type
3850void _nc_get_type(
3851 char *name)
3852 { /* void */ }
3853
3854#undef _nc_warning
3855void _nc_warning(
micky3879b9f5e72025-07-08 18:04:53 -04003856 const char *const fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303857 ...)
3858 { /* void */ }
3859
3860#undef _nc_err_abort
3861void _nc_err_abort(
micky3879b9f5e72025-07-08 18:04:53 -04003862 const char *const fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303863 ...)
3864 { /* void */ }
3865
3866#undef _nc_syserr_abort
3867void _nc_syserr_abort(
micky3879b9f5e72025-07-08 18:04:53 -04003868 const char *const fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303869 ...)
3870 { /* void */ }
3871
Steve Kondikae271bc2015-11-15 02:50:53 +01003872/* ./tinfo/comp_hash.c */
3873
3874#undef _nc_find_entry
3875struct name_table_entry const *_nc_find_entry(
micky3879b9f5e72025-07-08 18:04:53 -04003876 const char *string,
Steve Kondikae271bc2015-11-15 02:50:53 +01003877 const HashValue *hash_table)
3878 { return(*(struct name_table_entry const **)0); }
3879
3880#undef _nc_find_type_entry
3881struct name_table_entry const *_nc_find_type_entry(
micky3879b9f5e72025-07-08 18:04:53 -04003882 const char *string,
3883 int type,
Steve Kondikae271bc2015-11-15 02:50:53 +01003884 NCURSES_BOOL termcap)
3885 { return(*(struct name_table_entry const **)0); }
3886
micky3879b9f5e72025-07-08 18:04:53 -04003887#undef _nc_find_user_entry
3888struct user_table_entry const *_nc_find_user_entry(
3889 const char *string)
3890 { return(*(struct user_table_entry const **)0); }
3891
3892/* ./comp_userdefs.c */
3893
3894#undef _nc_get_userdefs_table
3895const struct user_table_entry *_nc_get_userdefs_table(void)
3896 { return(*(const struct user_table_entry **)0); }
3897
3898#undef _nc_get_hash_user
3899const HashData *_nc_get_hash_user(void)
3900 { return(*(const HashData **)0); }
3901
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303902/* ./tinfo/db_iterator.c */
3903
3904#undef _nc_tic_dir
3905const char *_nc_tic_dir(
3906 const char *path)
3907 { return(*(const char **)0); }
3908
3909#undef _nc_keep_tic_dir
3910void _nc_keep_tic_dir(
3911 const char *path)
3912 { /* void */ }
3913
3914#undef _nc_last_db
3915void _nc_last_db(void)
3916 { /* void */ }
3917
3918#undef _nc_next_db
3919const char *_nc_next_db(
micky3879b9f5e72025-07-08 18:04:53 -04003920 DBDIRS *state,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303921 int *offset)
3922 { return(*(const char **)0); }
3923
3924#undef _nc_first_db
3925void _nc_first_db(
micky3879b9f5e72025-07-08 18:04:53 -04003926 DBDIRS *state,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303927 int *offset)
3928 { /* void */ }
3929
3930/* ./tinfo/doalloc.c */
3931
3932#undef _nc_doalloc
3933void *_nc_doalloc(
micky3879b9f5e72025-07-08 18:04:53 -04003934 void *oldp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303935 size_t amount)
3936 { return(*(void **)0); }
3937
3938/* ./tinfo/entries.c */
3939
3940#undef _nc_head
3941ENTRY *_nc_head;
3942#undef _nc_tail
3943ENTRY *_nc_tail;
3944
3945#undef _nc_free_entry
3946void _nc_free_entry(
micky3879b9f5e72025-07-08 18:04:53 -04003947 ENTRY *headp,
3948 TERMTYPE2 *tterm)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303949 { /* void */ }
3950
3951#undef _nc_free_entries
3952void _nc_free_entries(
3953 ENTRY *headp)
3954 { /* void */ }
3955
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303956#undef _nc_leaks_tinfo
3957void _nc_leaks_tinfo(void)
3958 { /* void */ }
3959
micky3879b9f5e72025-07-08 18:04:53 -04003960#undef exit_terminfo
3961void exit_terminfo(
3962 int code)
3963 { /* void */ }
3964
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303965/* ./fallback.c */
3966
micky3879b9f5e72025-07-08 18:04:53 -04003967#undef _nc_fallback2
3968const TERMTYPE2 *_nc_fallback2(
3969 const char *name)
3970 { return(*(const TERMTYPE2 **)0); }
3971
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303972#undef _nc_fallback
3973const TERMTYPE *_nc_fallback(
3974 const char *name)
3975 { return(*(const TERMTYPE **)0); }
3976
3977/* ./tinfo/free_ttype.c */
3978
3979#undef _nc_free_termtype
3980void _nc_free_termtype(
3981 TERMTYPE *ptr)
3982 { /* void */ }
3983
micky3879b9f5e72025-07-08 18:04:53 -04003984#undef _nc_free_termtype1
3985void _nc_free_termtype1(
3986 TERMTYPE *ptr)
3987 { /* void */ }
3988
3989#undef _nc_free_termtype2
3990void _nc_free_termtype2(
3991 TERMTYPE2 *ptr)
3992 { /* void */ }
3993
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303994#undef _nc_user_definable
3995NCURSES_BOOL _nc_user_definable;
3996
3997#undef use_extended_names
3998int use_extended_names(
3999 NCURSES_BOOL flag)
4000 { return(*(int *)0); }
4001
4002/* ./tinfo/getenv_num.c */
4003
4004#undef _nc_getenv_num
4005int _nc_getenv_num(
4006 const char *name)
4007 { return(*(int *)0); }
4008
Steve Kondikae271bc2015-11-15 02:50:53 +01004009#undef _nc_setenv_num
4010void _nc_setenv_num(
micky3879b9f5e72025-07-08 18:04:53 -04004011 const char *name,
Steve Kondikae271bc2015-11-15 02:50:53 +01004012 int value)
4013 { /* void */ }
4014
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304015/* ./tinfo/home_terminfo.c */
4016
4017#undef _nc_home_terminfo
4018char *_nc_home_terminfo(void)
4019 { return(*(char **)0); }
4020
4021/* ./tinfo/init_keytry.c */
4022
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304023#undef _nc_init_keytry
4024void _nc_init_keytry(
4025 SCREEN *sp)
4026 { /* void */ }
4027
4028/* ./tinfo/lib_acs.c */
4029
4030#undef acs_map
4031chtype acs_map[128];
4032
Steve Kondikae271bc2015-11-15 02:50:53 +01004033#undef _nc_init_acs_sp
4034void _nc_init_acs_sp(
4035 SCREEN *sp)
4036 { /* void */ }
4037
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304038#undef _nc_init_acs
4039void _nc_init_acs(void)
4040 { /* void */ }
4041
4042/* ./tinfo/lib_baudrate.c */
4043
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304044struct speed {
micky3879b9f5e72025-07-08 18:04:53 -04004045 int given_speed;
4046 int actual_speed;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304047};
4048
4049#undef _nc_baudrate
4050int _nc_baudrate(
4051 int OSpeed)
4052 { return(*(int *)0); }
4053
4054#undef _nc_ospeed
4055int _nc_ospeed(
4056 int BaudRate)
4057 { return(*(int *)0); }
4058
Steve Kondikae271bc2015-11-15 02:50:53 +01004059#undef baudrate_sp
4060int baudrate_sp(
4061 SCREEN *sp)
4062 { return(*(int *)0); }
4063
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304064#undef baudrate
4065int baudrate(void)
4066 { return(*(int *)0); }
4067
4068/* ./tinfo/lib_cur_term.c */
4069
4070#undef cur_term
4071TERMINAL *cur_term;
4072
Steve Kondikae271bc2015-11-15 02:50:53 +01004073#undef set_curterm_sp
4074TERMINAL *set_curterm_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004075 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004076 TERMINAL *termp)
4077 { return(*(TERMINAL **)0); }
4078
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304079#undef set_curterm
4080TERMINAL *set_curterm(
4081 TERMINAL *termp)
4082 { return(*(TERMINAL **)0); }
4083
Steve Kondikae271bc2015-11-15 02:50:53 +01004084#undef del_curterm_sp
4085int del_curterm_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004086 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004087 TERMINAL *termp)
4088 { return(*(int *)0); }
4089
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304090#undef del_curterm
4091int del_curterm(
4092 TERMINAL *termp)
4093 { return(*(int *)0); }
4094
4095/* ./tinfo/lib_data.c */
4096
4097#undef stdscr
4098WINDOW *stdscr;
4099#undef curscr
4100WINDOW *curscr;
4101#undef newscr
4102WINDOW *newscr;
4103#undef _nc_screen_chain
4104SCREEN *_nc_screen_chain;
4105#undef SP
4106SCREEN *SP;
4107#undef _nc_globals
4108NCURSES_GLOBALS _nc_globals;
4109#undef _nc_prescreen
4110NCURSES_PRESCREEN _nc_prescreen;
4111
Steve Kondikae271bc2015-11-15 02:50:53 +01004112#undef _nc_screen_of
4113SCREEN *_nc_screen_of(
4114 WINDOW *win)
4115 { return(*(SCREEN **)0); }
4116
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304117/* ./tinfo/lib_has_cap.c */
4118
Steve Kondikae271bc2015-11-15 02:50:53 +01004119#undef has_ic_sp
4120NCURSES_BOOL has_ic_sp(
4121 SCREEN *sp)
4122 { return(*(NCURSES_BOOL *)0); }
4123
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304124#undef has_ic
4125NCURSES_BOOL has_ic(void)
4126 { return(*(NCURSES_BOOL *)0); }
4127
Steve Kondikae271bc2015-11-15 02:50:53 +01004128#undef has_il_sp
4129NCURSES_BOOL has_il_sp(
4130 SCREEN *sp)
4131 { return(*(NCURSES_BOOL *)0); }
4132
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304133#undef has_il
4134NCURSES_BOOL has_il(void)
4135 { return(*(NCURSES_BOOL *)0); }
4136
4137/* ./tinfo/lib_kernel.c */
4138
Steve Kondikae271bc2015-11-15 02:50:53 +01004139#undef erasechar_sp
4140char erasechar_sp(
4141 SCREEN *sp)
4142 { return(*(char *)0); }
4143
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304144#undef erasechar
4145char erasechar(void)
4146 { return(*(char *)0); }
4147
Steve Kondikae271bc2015-11-15 02:50:53 +01004148#undef killchar_sp
4149char killchar_sp(
4150 SCREEN *sp)
4151 { return(*(char *)0); }
4152
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304153#undef killchar
4154char killchar(void)
4155 { return(*(char *)0); }
4156
Steve Kondikae271bc2015-11-15 02:50:53 +01004157#undef flushinp_sp
4158int flushinp_sp(
4159 SCREEN *sp)
4160 { return(*(int *)0); }
4161
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304162#undef flushinp
4163int flushinp(void)
4164 { return(*(int *)0); }
4165
4166/* ./lib_keyname.c */
4167
4168struct kn { short offset; int code; };
4169
Steve Kondikae271bc2015-11-15 02:50:53 +01004170#undef keyname_sp
4171const char *keyname_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004172 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304173 int c)
Steve Kondikae271bc2015-11-15 02:50:53 +01004174 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304175
4176#undef keyname
Steve Kondikae271bc2015-11-15 02:50:53 +01004177const char *keyname(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304178 int c)
Steve Kondikae271bc2015-11-15 02:50:53 +01004179 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304180
4181/* ./tinfo/lib_longname.c */
4182
Steve Kondikae271bc2015-11-15 02:50:53 +01004183#undef longname_sp
4184char *longname_sp(
4185 SCREEN *sp)
4186 { return(*(char **)0); }
4187
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304188#undef longname
4189char *longname(void)
4190 { return(*(char **)0); }
4191
4192/* ./tinfo/lib_napms.c */
4193
Steve Kondikae271bc2015-11-15 02:50:53 +01004194#undef napms_sp
4195int napms_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004196 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004197 int ms)
4198 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304199
4200#undef napms
4201int napms(
4202 int ms)
4203 { return(*(int *)0); }
4204
4205/* ./tinfo/lib_options.c */
4206
4207#undef idlok
4208int idlok(
micky3879b9f5e72025-07-08 18:04:53 -04004209 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304210 NCURSES_BOOL flag)
4211 { return(*(int *)0); }
4212
4213#undef idcok
4214void idcok(
micky3879b9f5e72025-07-08 18:04:53 -04004215 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304216 NCURSES_BOOL flag)
4217 { /* void */ }
4218
Steve Kondikae271bc2015-11-15 02:50:53 +01004219#undef halfdelay_sp
4220int halfdelay_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004221 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004222 int t)
4223 { return(*(int *)0); }
4224
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304225#undef halfdelay
4226int halfdelay(
4227 int t)
4228 { return(*(int *)0); }
4229
4230#undef nodelay
4231int nodelay(
micky3879b9f5e72025-07-08 18:04:53 -04004232 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304233 NCURSES_BOOL flag)
4234 { return(*(int *)0); }
4235
4236#undef notimeout
4237int notimeout(
micky3879b9f5e72025-07-08 18:04:53 -04004238 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304239 NCURSES_BOOL f)
4240 { return(*(int *)0); }
4241
4242#undef wtimeout
4243void wtimeout(
micky3879b9f5e72025-07-08 18:04:53 -04004244 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304245 int delay)
4246 { /* void */ }
4247
4248#undef keypad
4249int keypad(
micky3879b9f5e72025-07-08 18:04:53 -04004250 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304251 NCURSES_BOOL flag)
4252 { return(*(int *)0); }
4253
4254#undef meta
4255int meta(
micky3879b9f5e72025-07-08 18:04:53 -04004256 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304257 NCURSES_BOOL flag)
4258 { return(*(int *)0); }
4259
Steve Kondikae271bc2015-11-15 02:50:53 +01004260#undef curs_set_sp
4261int curs_set_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004262 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004263 int vis)
4264 { return(*(int *)0); }
4265
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304266#undef curs_set
4267int curs_set(
4268 int vis)
4269 { return(*(int *)0); }
4270
Steve Kondikae271bc2015-11-15 02:50:53 +01004271#undef typeahead_sp
4272int typeahead_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004273 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004274 int fd)
4275 { return(*(int *)0); }
4276
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304277#undef typeahead
4278int typeahead(
4279 int fd)
4280 { return(*(int *)0); }
4281
Steve Kondikae271bc2015-11-15 02:50:53 +01004282#undef has_key_sp
4283int has_key_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004284 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004285 int keycode)
4286 { return(*(int *)0); }
4287
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304288#undef has_key
4289int has_key(
4290 int keycode)
4291 { return(*(int *)0); }
4292
Steve Kondikae271bc2015-11-15 02:50:53 +01004293#undef _nc_putp_flush_sp
4294int _nc_putp_flush_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004295 SCREEN *sp,
4296 const char *name,
Steve Kondikae271bc2015-11-15 02:50:53 +01004297 const char *value)
4298 { return(*(int *)0); }
4299
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304300#undef _nc_keypad
4301int _nc_keypad(
micky3879b9f5e72025-07-08 18:04:53 -04004302 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004303 int flag)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304304 { return(*(int *)0); }
4305
4306/* ./tinfo/lib_raw.c */
4307
Steve Kondikae271bc2015-11-15 02:50:53 +01004308#undef raw_sp
4309int raw_sp(
4310 SCREEN *sp)
4311 { return(*(int *)0); }
4312
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304313#undef raw
4314int raw(void)
4315 { return(*(int *)0); }
4316
Steve Kondikae271bc2015-11-15 02:50:53 +01004317#undef cbreak_sp
4318int cbreak_sp(
4319 SCREEN *sp)
4320 { return(*(int *)0); }
4321
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304322#undef cbreak
4323int cbreak(void)
4324 { return(*(int *)0); }
4325
Steve Kondikae271bc2015-11-15 02:50:53 +01004326#undef qiflush_sp
4327void qiflush_sp(
4328 SCREEN *sp)
4329 { /* void */ }
4330
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304331#undef qiflush
4332void qiflush(void)
4333 { /* void */ }
4334
Steve Kondikae271bc2015-11-15 02:50:53 +01004335#undef noraw_sp
4336int noraw_sp(
4337 SCREEN *sp)
4338 { return(*(int *)0); }
4339
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304340#undef noraw
4341int noraw(void)
4342 { return(*(int *)0); }
4343
Steve Kondikae271bc2015-11-15 02:50:53 +01004344#undef nocbreak_sp
4345int nocbreak_sp(
4346 SCREEN *sp)
4347 { return(*(int *)0); }
4348
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304349#undef nocbreak
4350int nocbreak(void)
4351 { return(*(int *)0); }
4352
Steve Kondikae271bc2015-11-15 02:50:53 +01004353#undef noqiflush_sp
4354void noqiflush_sp(
4355 SCREEN *sp)
4356 { /* void */ }
4357
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304358#undef noqiflush
4359void noqiflush(void)
4360 { /* void */ }
4361
Steve Kondikae271bc2015-11-15 02:50:53 +01004362#undef intrflush_sp
4363int intrflush_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004364 SCREEN *sp,
4365 WINDOW *win,
Steve Kondikae271bc2015-11-15 02:50:53 +01004366 NCURSES_BOOL flag)
4367 { return(*(int *)0); }
4368
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304369#undef intrflush
4370int intrflush(
micky3879b9f5e72025-07-08 18:04:53 -04004371 WINDOW *win,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304372 NCURSES_BOOL flag)
4373 { return(*(int *)0); }
4374
micky3879b9f5e72025-07-08 18:04:53 -04004375#undef is_nl_sp
4376int is_nl_sp(
4377 SCREEN *sp)
4378 { return(*(int *)0); }
4379
4380#undef is_raw_sp
4381int is_raw_sp(
4382 SCREEN *sp)
4383 { return(*(int *)0); }
4384
4385#undef is_cbreak_sp
4386int is_cbreak_sp(
4387 SCREEN *sp)
4388 { return(*(int *)0); }
4389
4390#undef is_echo_sp
4391int is_echo_sp(
4392 SCREEN *sp)
4393 { return(*(int *)0); }
4394
4395#undef is_nl
4396int is_nl(void)
4397 { return(*(int *)0); }
4398
4399#undef is_raw
4400int is_raw(void)
4401 { return(*(int *)0); }
4402
4403#undef is_cbreak
4404int is_cbreak(void)
4405 { return(*(int *)0); }
4406
4407#undef is_echo
4408int is_echo(void)
4409 { return(*(int *)0); }
4410
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304411/* ./tinfo/lib_setup.c */
4412
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304413#undef ttytype
4414char ttytype[256];
4415#undef LINES
4416int LINES;
4417#undef COLS
4418int COLS;
4419#undef TABSIZE
4420int TABSIZE;
4421
Steve Kondikae271bc2015-11-15 02:50:53 +01004422#undef set_tabsize_sp
4423int set_tabsize_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004424 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004425 int value)
4426 { return(*(int *)0); }
4427
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304428#undef set_tabsize
4429int set_tabsize(
4430 int value)
4431 { return(*(int *)0); }
4432
4433#undef _nc_handle_sigwinch
4434int _nc_handle_sigwinch(
4435 SCREEN *sp)
4436 { return(*(int *)0); }
4437
Steve Kondikae271bc2015-11-15 02:50:53 +01004438#undef use_env_sp
4439void use_env_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004440 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004441 NCURSES_BOOL f)
4442 { /* void */ }
4443
4444#undef use_tioctl_sp
4445void use_tioctl_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004446 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004447 NCURSES_BOOL f)
4448 { /* void */ }
4449
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304450#undef use_env
4451void use_env(
4452 NCURSES_BOOL f)
4453 { /* void */ }
4454
Steve Kondikae271bc2015-11-15 02:50:53 +01004455#undef use_tioctl
4456void use_tioctl(
4457 NCURSES_BOOL f)
4458 { /* void */ }
4459
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304460#undef _nc_get_screensize
4461void _nc_get_screensize(
micky3879b9f5e72025-07-08 18:04:53 -04004462 SCREEN *sp,
4463 int *linep,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304464 int *colp)
4465 { /* void */ }
4466
4467#undef _nc_update_screensize
4468void _nc_update_screensize(
4469 SCREEN *sp)
4470 { /* void */ }
4471
Steve Kondikae271bc2015-11-15 02:50:53 +01004472#undef _nc_setup_tinfo
4473int _nc_setup_tinfo(
micky3879b9f5e72025-07-08 18:04:53 -04004474 const char *const tn,
4475 TERMTYPE2 *const tp)
Steve Kondikae271bc2015-11-15 02:50:53 +01004476 { return(*(int *)0); }
4477
4478#undef _nc_tinfo_cmdch
4479void _nc_tinfo_cmdch(
micky3879b9f5e72025-07-08 18:04:53 -04004480 TERMINAL *termp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004481 int proto)
4482 { /* void */ }
4483
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304484#undef _nc_get_locale
4485char *_nc_get_locale(void)
4486 { return(*(char **)0); }
4487
4488#undef _nc_unicode_locale
4489int _nc_unicode_locale(void)
4490 { return(*(int *)0); }
4491
4492#undef _nc_locale_breaks_acs
4493int _nc_locale_breaks_acs(
4494 TERMINAL *termp)
4495 { return(*(int *)0); }
4496
4497#undef _nc_setupterm
4498int _nc_setupterm(
micky3879b9f5e72025-07-08 18:04:53 -04004499 const char *tname,
4500 int Filedes,
4501 int *errret,
Steve Kondikae271bc2015-11-15 02:50:53 +01004502 int reuse)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304503 { return(*(int *)0); }
4504
Steve Kondikae271bc2015-11-15 02:50:53 +01004505#undef new_prescr
4506SCREEN *new_prescr(void)
4507 { return(*(SCREEN **)0); }
4508
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304509#undef setupterm
4510int setupterm(
micky3879b9f5e72025-07-08 18:04:53 -04004511 const char *tname,
4512 int Filedes,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304513 int *errret)
4514 { return(*(int *)0); }
4515
4516/* ./tinfo/lib_termcap.c */
4517
4518#undef UP
4519char *UP;
4520#undef BC
4521char *BC;
4522
Steve Kondikae271bc2015-11-15 02:50:53 +01004523#undef tgetent_sp
4524int tgetent_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004525 SCREEN *sp,
4526 char *bufp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004527 const char *name)
4528 { return(*(int *)0); }
4529
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304530#undef tgetent
4531int tgetent(
micky3879b9f5e72025-07-08 18:04:53 -04004532 char *bufp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304533 const char *name)
4534 { return(*(int *)0); }
4535
Steve Kondikae271bc2015-11-15 02:50:53 +01004536#undef tgetflag_sp
4537int tgetflag_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004538 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004539 const char *id)
4540 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304541
4542#undef tgetflag
4543int tgetflag(
Steve Kondikae271bc2015-11-15 02:50:53 +01004544 const char *id)
4545 { return(*(int *)0); }
4546
4547#undef tgetnum_sp
4548int tgetnum_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004549 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004550 const char *id)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304551 { return(*(int *)0); }
4552
4553#undef tgetnum
4554int tgetnum(
Steve Kondikae271bc2015-11-15 02:50:53 +01004555 const char *id)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304556 { return(*(int *)0); }
4557
Steve Kondikae271bc2015-11-15 02:50:53 +01004558#undef tgetstr_sp
4559char *tgetstr_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004560 SCREEN *sp,
4561 const char *id,
Steve Kondikae271bc2015-11-15 02:50:53 +01004562 char **area)
4563 { return(*(char **)0); }
4564
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304565#undef tgetstr
4566char *tgetstr(
micky3879b9f5e72025-07-08 18:04:53 -04004567 const char *id,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304568 char **area)
4569 { return(*(char **)0); }
4570
4571/* ./tinfo/lib_termname.c */
4572
Steve Kondikae271bc2015-11-15 02:50:53 +01004573#undef termname_sp
4574char *termname_sp(
4575 SCREEN *sp)
4576 { return(*(char **)0); }
4577
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304578#undef termname
4579char *termname(void)
4580 { return(*(char **)0); }
4581
4582/* ./tinfo/lib_tgoto.c */
4583
4584#undef tgoto
4585char *tgoto(
micky3879b9f5e72025-07-08 18:04:53 -04004586 const char *string,
4587 int x,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304588 int y)
4589 { return(*(char **)0); }
4590
4591/* ./tinfo/lib_ti.c */
4592
Steve Kondikae271bc2015-11-15 02:50:53 +01004593#undef tigetflag_sp
4594int tigetflag_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004595 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004596 const char *str)
4597 { return(*(int *)0); }
4598
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304599#undef tigetflag
4600int tigetflag(
Steve Kondikae271bc2015-11-15 02:50:53 +01004601 const char *str)
4602 { return(*(int *)0); }
4603
4604#undef tigetnum_sp
4605int tigetnum_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004606 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004607 const char *str)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304608 { return(*(int *)0); }
4609
4610#undef tigetnum
4611int tigetnum(
Steve Kondikae271bc2015-11-15 02:50:53 +01004612 const char *str)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304613 { return(*(int *)0); }
4614
Steve Kondikae271bc2015-11-15 02:50:53 +01004615#undef tigetstr_sp
4616char *tigetstr_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004617 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004618 const char *str)
4619 { return(*(char **)0); }
4620
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304621#undef tigetstr
4622char *tigetstr(
Steve Kondikae271bc2015-11-15 02:50:53 +01004623 const char *str)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304624 { return(*(char **)0); }
4625
4626/* ./tinfo/lib_tparm.c */
4627
4628#undef _nc_tparm_err
4629int _nc_tparm_err;
4630
micky3879b9f5e72025-07-08 18:04:53 -04004631#undef _nc_free_tparm
4632void _nc_free_tparm(
4633 TERMINAL *termp)
4634 { /* void */ }
4635
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304636#undef _nc_tparm_analyze
4637int _nc_tparm_analyze(
micky3879b9f5e72025-07-08 18:04:53 -04004638 TERMINAL *term,
4639 const char *string,
4640 char **p_is_s,
Steve Kondikae271bc2015-11-15 02:50:53 +01004641 int *_nc_popcount)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304642 { return(*(int *)0); }
4643
4644#undef tparm
4645char *tparm(
micky3879b9f5e72025-07-08 18:04:53 -04004646 const char *string,
Steve Kondikae271bc2015-11-15 02:50:53 +01004647 ...)
4648 { return(*(char **)0); }
4649
4650#undef tiparm
4651char *tiparm(
micky3879b9f5e72025-07-08 18:04:53 -04004652 const char *string,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304653 ...)
4654 { return(*(char **)0); }
4655
micky3879b9f5e72025-07-08 18:04:53 -04004656#undef tiparm_s
4657char *tiparm_s(
4658 int num_expected,
4659 int tparm_type,
4660 const char *string,
4661 ...)
4662 { return(*(char **)0); }
4663
4664#undef tiscan_s
4665int tiscan_s(
4666 int *num_expected,
4667 int *tparm_type,
4668 const char *string)
4669 { return(*(int *)0); }
4670
4671#undef _nc_tiparm
4672char *_nc_tiparm(
4673 int expected,
4674 const char *string,
4675 ...)
4676 { return(*(char **)0); }
4677
4678#undef _nc_reset_tparm
4679void _nc_reset_tparm(
4680 TERMINAL *term)
4681 { /* void */ }
4682
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304683/* ./tinfo/lib_tputs.c */
4684
4685#undef PC
4686char PC;
4687#undef ospeed
Steve Kondikae271bc2015-11-15 02:50:53 +01004688short ospeed;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304689#undef _nc_nulls_sent
4690int _nc_nulls_sent;
4691
4692#undef _nc_set_no_padding
4693void _nc_set_no_padding(
4694 SCREEN *sp)
4695 { /* void */ }
4696
Steve Kondikae271bc2015-11-15 02:50:53 +01004697#undef delay_output_sp
4698int delay_output_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004699 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004700 int ms)
4701 { return(*(int *)0); }
4702
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304703#undef delay_output
4704int delay_output(
4705 int ms)
4706 { return(*(int *)0); }
4707
Steve Kondikae271bc2015-11-15 02:50:53 +01004708#undef _nc_flush_sp
4709void _nc_flush_sp(
4710 SCREEN *sp)
4711 { /* void */ }
4712
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304713#undef _nc_flush
4714void _nc_flush(void)
4715 { /* void */ }
4716
Steve Kondikae271bc2015-11-15 02:50:53 +01004717#undef _nc_outch_sp
4718int _nc_outch_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004719 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004720 int ch)
4721 { return(*(int *)0); }
4722
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304723#undef _nc_outch
4724int _nc_outch(
4725 int ch)
4726 { return(*(int *)0); }
4727
Steve Kondikae271bc2015-11-15 02:50:53 +01004728#undef _nc_putchar_sp
4729int _nc_putchar_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004730 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004731 int ch)
4732 { return(*(int *)0); }
4733
4734#undef _nc_putchar
4735int _nc_putchar(
4736 int ch)
4737 { return(*(int *)0); }
4738
4739#undef putp_sp
4740int putp_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004741 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004742 const char *string)
4743 { return(*(int *)0); }
4744
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304745#undef putp
4746int putp(
4747 const char *string)
4748 { return(*(int *)0); }
4749
Steve Kondikae271bc2015-11-15 02:50:53 +01004750#undef _nc_putp_sp
4751int _nc_putp_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004752 SCREEN *sp,
4753 const char *name,
Steve Kondikae271bc2015-11-15 02:50:53 +01004754 const char *string)
4755 { return(*(int *)0); }
4756
4757#undef _nc_putp
4758int _nc_putp(
micky3879b9f5e72025-07-08 18:04:53 -04004759 const char *name,
Steve Kondikae271bc2015-11-15 02:50:53 +01004760 const char *string)
4761 { return(*(int *)0); }
4762
4763#undef tputs_sp
4764int tputs_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004765 SCREEN *sp,
4766 const char *string,
4767 int affcnt,
Steve Kondikae271bc2015-11-15 02:50:53 +01004768 NCURSES_OUTC_sp outc)
4769 { return(*(int *)0); }
4770
4771#undef _nc_outc_wrapper
4772int _nc_outc_wrapper(
micky3879b9f5e72025-07-08 18:04:53 -04004773 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004774 int c)
4775 { return(*(int *)0); }
4776
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304777#undef tputs
4778int tputs(
micky3879b9f5e72025-07-08 18:04:53 -04004779 const char *string,
4780 int affcnt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304781 int (*outc)(
4782 int p1))
4783 { return(*(int *)0); }
4784
4785/* ./trace/lib_trace.c */
4786
4787#undef _nc_tracing
4788unsigned _nc_tracing;
4789#undef _nc_tputs_trace
4790const char *_nc_tputs_trace = {0};
4791#undef _nc_outchars
4792long _nc_outchars;
4793
micky3879b9f5e72025-07-08 18:04:53 -04004794#undef curses_trace
4795unsigned curses_trace(
4796 unsigned tracelevel)
4797 { return(*(unsigned *)0); }
4798
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304799#undef trace
4800void trace(
4801 const unsigned int tracelevel)
4802 { /* void */ }
4803
4804#undef _tracef
4805void _tracef(
micky3879b9f5e72025-07-08 18:04:53 -04004806 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304807 ...)
4808 { /* void */ }
4809
4810#undef _nc_retrace_bool
4811NCURSES_BOOL _nc_retrace_bool(
Steve Kondikae271bc2015-11-15 02:50:53 +01004812 int code)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304813 { return(*(NCURSES_BOOL *)0); }
4814
Steve Kondikae271bc2015-11-15 02:50:53 +01004815#undef _nc_retrace_char
4816char _nc_retrace_char(
4817 int code)
4818 { return(*(char *)0); }
4819
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304820#undef _nc_retrace_int
4821int _nc_retrace_int(
4822 int code)
4823 { return(*(int *)0); }
4824
4825#undef _nc_retrace_unsigned
4826unsigned _nc_retrace_unsigned(
4827 unsigned code)
4828 { return(*(unsigned *)0); }
4829
4830#undef _nc_retrace_ptr
4831char *_nc_retrace_ptr(
4832 char *code)
4833 { return(*(char **)0); }
4834
4835#undef _nc_retrace_cptr
4836const char *_nc_retrace_cptr(
4837 const char *code)
4838 { return(*(const char **)0); }
4839
4840#undef _nc_retrace_cvoid_ptr
Steve Kondikae271bc2015-11-15 02:50:53 +01004841const void *_nc_retrace_cvoid_ptr(
4842 const void *code)
4843 { return(*(const void **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304844
4845#undef _nc_retrace_void_ptr
4846void *_nc_retrace_void_ptr(
4847 void *code)
4848 { return(*(void **)0); }
4849
4850#undef _nc_retrace_sp
4851SCREEN *_nc_retrace_sp(
4852 SCREEN *code)
4853 { return(*(SCREEN **)0); }
4854
4855#undef _nc_retrace_win
4856WINDOW *_nc_retrace_win(
4857 WINDOW *code)
4858 { return(*(WINDOW **)0); }
4859
micky3879b9f5e72025-07-08 18:04:53 -04004860#undef _nc_fmt_funcptr
4861char *_nc_fmt_funcptr(
4862 char *target,
4863 const char *source,
4864 size_t size)
4865 { return(*(char **)0); }
4866
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304867/* ./trace/lib_traceatr.c */
4868
4869#undef _traceattr2
4870char *_traceattr2(
micky3879b9f5e72025-07-08 18:04:53 -04004871 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304872 chtype newmode)
4873 { return(*(char **)0); }
4874
4875#undef _traceattr
4876char *_traceattr(
4877 attr_t newmode)
4878 { return(*(char **)0); }
4879
Steve Kondikae271bc2015-11-15 02:50:53 +01004880#undef _nc_retrace_int_attr_t
4881int _nc_retrace_int_attr_t(
4882 attr_t code)
4883 { return(*(int *)0); }
4884
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304885#undef _nc_retrace_attr_t
4886attr_t _nc_retrace_attr_t(
4887 attr_t code)
4888 { return(*(attr_t *)0); }
4889
4890#undef _nc_altcharset_name
4891const char *_nc_altcharset_name(
micky3879b9f5e72025-07-08 18:04:53 -04004892 attr_t attr,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304893 chtype ch)
4894 { return(*(const char **)0); }
4895
4896#undef _tracechtype2
4897char *_tracechtype2(
micky3879b9f5e72025-07-08 18:04:53 -04004898 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304899 chtype ch)
4900 { return(*(char **)0); }
4901
4902#undef _tracechtype
4903char *_tracechtype(
4904 chtype ch)
4905 { return(*(char **)0); }
4906
4907#undef _nc_retrace_chtype
4908chtype _nc_retrace_chtype(
4909 chtype code)
4910 { return(*(chtype *)0); }
4911
4912#undef _tracecchar_t2
4913char *_tracecchar_t2(
micky3879b9f5e72025-07-08 18:04:53 -04004914 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304915 const cchar_t *ch)
4916 { return(*(char **)0); }
4917
4918#undef _tracecchar_t
4919char *_tracecchar_t(
4920 const cchar_t *ch)
4921 { return(*(char **)0); }
4922
4923/* ./trace/lib_tracebits.c */
4924
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304925#undef _nc_trace_ttymode
4926char *_nc_trace_ttymode(
micky3879b9f5e72025-07-08 18:04:53 -04004927 const struct termios *tty)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304928 { return(*(char **)0); }
4929
4930#undef _nc_tracebits
4931char *_nc_tracebits(void)
4932 { return(*(char **)0); }
4933
4934/* ./trace/lib_tracechr.c */
4935
4936#undef _nc_tracechar
4937char *_nc_tracechar(
micky3879b9f5e72025-07-08 18:04:53 -04004938 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304939 int ch)
4940 { return(*(char **)0); }
4941
4942#undef _tracechar
4943char *_tracechar(
4944 int ch)
4945 { return(*(char **)0); }
4946
4947/* ./tinfo/lib_ttyflags.c */
4948
Steve Kondikae271bc2015-11-15 02:50:53 +01004949#undef _nc_get_tty_mode_sp
4950int _nc_get_tty_mode_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004951 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004952 struct termios *buf)
4953 { return(*(int *)0); }
4954
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304955#undef _nc_get_tty_mode
4956int _nc_get_tty_mode(
4957 struct termios *buf)
4958 { return(*(int *)0); }
4959
Steve Kondikae271bc2015-11-15 02:50:53 +01004960#undef _nc_set_tty_mode_sp
4961int _nc_set_tty_mode_sp(
micky3879b9f5e72025-07-08 18:04:53 -04004962 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004963 struct termios *buf)
4964 { return(*(int *)0); }
4965
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304966#undef _nc_set_tty_mode
4967int _nc_set_tty_mode(
4968 struct termios *buf)
4969 { return(*(int *)0); }
4970
Steve Kondikae271bc2015-11-15 02:50:53 +01004971#undef def_shell_mode_sp
4972int def_shell_mode_sp(
4973 SCREEN *sp)
4974 { return(*(int *)0); }
4975
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304976#undef def_shell_mode
4977int def_shell_mode(void)
4978 { return(*(int *)0); }
4979
Steve Kondikae271bc2015-11-15 02:50:53 +01004980#undef def_prog_mode_sp
4981int def_prog_mode_sp(
4982 SCREEN *sp)
4983 { return(*(int *)0); }
4984
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304985#undef def_prog_mode
4986int def_prog_mode(void)
4987 { return(*(int *)0); }
4988
Steve Kondikae271bc2015-11-15 02:50:53 +01004989#undef reset_prog_mode_sp
4990int reset_prog_mode_sp(
4991 SCREEN *sp)
4992 { return(*(int *)0); }
4993
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304994#undef reset_prog_mode
4995int reset_prog_mode(void)
4996 { return(*(int *)0); }
4997
Steve Kondikae271bc2015-11-15 02:50:53 +01004998#undef reset_shell_mode_sp
4999int reset_shell_mode_sp(
5000 SCREEN *sp)
5001 { return(*(int *)0); }
5002
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305003#undef reset_shell_mode
5004int reset_shell_mode(void)
5005 { return(*(int *)0); }
5006
Steve Kondikae271bc2015-11-15 02:50:53 +01005007#undef savetty_sp
5008int savetty_sp(
5009 SCREEN *sp)
5010 { return(*(int *)0); }
5011
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305012#undef savetty
5013int savetty(void)
5014 { return(*(int *)0); }
5015
Steve Kondikae271bc2015-11-15 02:50:53 +01005016#undef resetty_sp
5017int resetty_sp(
5018 SCREEN *sp)
5019 { return(*(int *)0); }
5020
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305021#undef resetty
5022int resetty(void)
5023 { return(*(int *)0); }
5024
5025/* ./tty/lib_twait.c */
5026
5027#undef _nc_timed_wait
5028int _nc_timed_wait(
micky3879b9f5e72025-07-08 18:04:53 -04005029 SCREEN *sp,
5030 int mode,
5031 int milliseconds,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305032 int *timeleft)
5033 { return(*(int *)0); }
5034
5035/* ./tinfo/name_match.c */
5036
5037#undef _nc_first_name
5038char *_nc_first_name(
5039 const char *const sp)
5040 { return(*(char **)0); }
5041
5042#undef _nc_name_match
5043int _nc_name_match(
micky3879b9f5e72025-07-08 18:04:53 -04005044 const char *const namelst,
5045 const char *const name,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305046 const char *const delim)
5047 { return(*(int *)0); }
5048
5049/* ./names.c */
5050
5051#undef boolnames
Steve Kondikae271bc2015-11-15 02:50:53 +01005052const char *const boolnames[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305053#undef boolfnames
Steve Kondikae271bc2015-11-15 02:50:53 +01005054const char *const boolfnames[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305055#undef numnames
Steve Kondikae271bc2015-11-15 02:50:53 +01005056const char *const numnames[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305057#undef numfnames
Steve Kondikae271bc2015-11-15 02:50:53 +01005058const char *const numfnames[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305059#undef strnames
Steve Kondikae271bc2015-11-15 02:50:53 +01005060const char *const strnames[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305061#undef strfnames
Steve Kondikae271bc2015-11-15 02:50:53 +01005062const char *const strfnames[] = {0};
5063
5064/* ./tinfo/obsolete.c */
5065
5066#undef _nc_set_buffer_sp
5067void _nc_set_buffer_sp(
micky3879b9f5e72025-07-08 18:04:53 -04005068 SCREEN *sp,
5069 FILE *ofp,
Steve Kondikae271bc2015-11-15 02:50:53 +01005070 int buffered)
5071 { /* void */ }
5072
5073#undef _nc_set_buffer
5074void _nc_set_buffer(
micky3879b9f5e72025-07-08 18:04:53 -04005075 FILE *ofp,
Steve Kondikae271bc2015-11-15 02:50:53 +01005076 int buffered)
5077 { /* void */ }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305078
5079/* ./tinfo/read_entry.c */
5080
Steve Kondikae271bc2015-11-15 02:50:53 +01005081#undef _nc_init_termtype
5082void _nc_init_termtype(
micky3879b9f5e72025-07-08 18:04:53 -04005083 TERMTYPE2 *const tp)
Steve Kondikae271bc2015-11-15 02:50:53 +01005084 { /* void */ }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305085
5086#undef _nc_read_termtype
5087int _nc_read_termtype(
micky3879b9f5e72025-07-08 18:04:53 -04005088 TERMTYPE2 *ptr,
5089 char *buffer,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305090 int limit)
5091 { return(*(int *)0); }
5092
5093#undef _nc_read_file_entry
5094int _nc_read_file_entry(
micky3879b9f5e72025-07-08 18:04:53 -04005095 const char *const filename,
5096 TERMTYPE2 *ptr)
5097 { return(*(int *)0); }
5098
5099#undef _nc_read_entry2
5100int _nc_read_entry2(
5101 const char *const name,
5102 char *const filename,
5103 TERMTYPE2 *const tp)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305104 { return(*(int *)0); }
5105
5106#undef _nc_read_entry
5107int _nc_read_entry(
micky3879b9f5e72025-07-08 18:04:53 -04005108 const char *const name,
5109 char *const filename,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305110 TERMTYPE *const tp)
5111 { return(*(int *)0); }
5112
5113/* ./tinfo/read_termcap.c */
5114
micky3879b9f5e72025-07-08 18:04:53 -04005115#undef _nc_read_termcap_entry
5116int _nc_read_termcap_entry(
5117 const char *const tn,
5118 TERMTYPE2 *const tp)
5119 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305120
5121/* ./tinfo/strings.c */
5122
5123#undef _nc_str_init
5124string_desc *_nc_str_init(
micky3879b9f5e72025-07-08 18:04:53 -04005125 string_desc *dst,
5126 char *src,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305127 size_t len)
5128 { return(*(string_desc **)0); }
5129
5130#undef _nc_str_null
5131string_desc *_nc_str_null(
micky3879b9f5e72025-07-08 18:04:53 -04005132 string_desc *dst,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305133 size_t len)
5134 { return(*(string_desc **)0); }
5135
5136#undef _nc_str_copy
5137string_desc *_nc_str_copy(
micky3879b9f5e72025-07-08 18:04:53 -04005138 string_desc *dst,
5139 const string_desc *const src)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305140 { return(*(string_desc **)0); }
5141
5142#undef _nc_safe_strcat
5143NCURSES_BOOL _nc_safe_strcat(
micky3879b9f5e72025-07-08 18:04:53 -04005144 string_desc *dst,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305145 const char *src)
5146 { return(*(NCURSES_BOOL *)0); }
5147
5148#undef _nc_safe_strcpy
5149NCURSES_BOOL _nc_safe_strcpy(
micky3879b9f5e72025-07-08 18:04:53 -04005150 string_desc *dst,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305151 const char *src)
5152 { return(*(NCURSES_BOOL *)0); }
5153
5154/* ./trace/trace_buf.c */
5155
5156#undef _nc_trace_buf
5157char *_nc_trace_buf(
micky3879b9f5e72025-07-08 18:04:53 -04005158 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305159 size_t want)
5160 { return(*(char **)0); }
5161
5162#undef _nc_trace_bufcat
5163char *_nc_trace_bufcat(
micky3879b9f5e72025-07-08 18:04:53 -04005164 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305165 const char *value)
5166 { return(*(char **)0); }
5167
5168/* ./trace/trace_tries.c */
5169
5170#undef _nc_trace_tries
5171void _nc_trace_tries(
5172 TRIES *tree)
5173 { /* void */ }
5174
5175/* ./base/tries.c */
5176
5177#undef _nc_expand_try
5178char *_nc_expand_try(
micky3879b9f5e72025-07-08 18:04:53 -04005179 TRIES *tree,
5180 unsigned code,
5181 int *count,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305182 size_t len)
5183 { return(*(char **)0); }
5184
5185#undef _nc_remove_key
5186int _nc_remove_key(
micky3879b9f5e72025-07-08 18:04:53 -04005187 TRIES **tree,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305188 unsigned code)
5189 { return(*(int *)0); }
5190
5191#undef _nc_remove_string
5192int _nc_remove_string(
micky3879b9f5e72025-07-08 18:04:53 -04005193 TRIES **tree,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305194 const char *string)
5195 { return(*(int *)0); }
5196
5197/* ./tinfo/trim_sgr0.c */
5198
5199#undef _nc_trim_sgr0
5200char *_nc_trim_sgr0(
micky3879b9f5e72025-07-08 18:04:53 -04005201 TERMTYPE2 *tp)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305202 { return(*(char **)0); }
5203
5204/* ./unctrl.c */
5205
Steve Kondikae271bc2015-11-15 02:50:53 +01005206#undef unctrl_sp
5207const char *unctrl_sp(
micky3879b9f5e72025-07-08 18:04:53 -04005208 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305209 chtype ch)
Steve Kondikae271bc2015-11-15 02:50:53 +01005210 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305211
5212#undef unctrl
Steve Kondikae271bc2015-11-15 02:50:53 +01005213const char *unctrl(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305214 chtype ch)
Steve Kondikae271bc2015-11-15 02:50:53 +01005215 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305216
5217/* ./trace/visbuf.c */
5218
5219#undef _nc_visbuf2
5220const char *_nc_visbuf2(
micky3879b9f5e72025-07-08 18:04:53 -04005221 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305222 const char *buf)
5223 { return(*(const char **)0); }
5224
5225#undef _nc_visbuf
5226const char *_nc_visbuf(
5227 const char *buf)
5228 { return(*(const char **)0); }
5229
5230#undef _nc_visbufn
5231const char *_nc_visbufn(
micky3879b9f5e72025-07-08 18:04:53 -04005232 const char *buf,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305233 int len)
5234 { return(*(const char **)0); }
5235
5236#undef _nc_viswbuf2
5237const char *_nc_viswbuf2(
micky3879b9f5e72025-07-08 18:04:53 -04005238 int bufnum,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305239 const wchar_t *buf)
5240 { return(*(const char **)0); }
5241
5242#undef _nc_viswbuf
5243const char *_nc_viswbuf(
5244 const wchar_t *buf)
5245 { return(*(const char **)0); }
5246
5247#undef _nc_viswbufn
5248const char *_nc_viswbufn(
micky3879b9f5e72025-07-08 18:04:53 -04005249 const wchar_t *buf,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305250 int len)
5251 { return(*(const char **)0); }
5252
5253#undef _nc_viswibuf
5254const char *_nc_viswibuf(
5255 const wint_t *buf)
5256 { return(*(const char **)0); }
5257
5258#undef _nc_viscbuf2
5259const char *_nc_viscbuf2(
micky3879b9f5e72025-07-08 18:04:53 -04005260 int bufnum,
5261 const cchar_t *buf,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305262 int len)
5263 { return(*(const char **)0); }
5264
5265#undef _nc_viscbuf
5266const char *_nc_viscbuf(
micky3879b9f5e72025-07-08 18:04:53 -04005267 const cchar_t *buf,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305268 int len)
5269 { return(*(const char **)0); }
5270
5271/* ./tinfo/alloc_entry.c */
5272
5273#undef _nc_init_entry
5274void _nc_init_entry(
micky3879b9f5e72025-07-08 18:04:53 -04005275 ENTRY *const tp)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305276 { /* void */ }
5277
5278#undef _nc_copy_entry
5279ENTRY *_nc_copy_entry(
5280 ENTRY *oldp)
5281 { return(*(ENTRY **)0); }
5282
5283#undef _nc_save_str
5284char *_nc_save_str(
micky3879b9f5e72025-07-08 18:04:53 -04005285 const char *string)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305286 { return(*(char **)0); }
5287
5288#undef _nc_wrap_entry
5289void _nc_wrap_entry(
micky3879b9f5e72025-07-08 18:04:53 -04005290 ENTRY *const ep,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305291 NCURSES_BOOL copy_strings)
5292 { /* void */ }
5293
5294#undef _nc_merge_entry
5295void _nc_merge_entry(
micky3879b9f5e72025-07-08 18:04:53 -04005296 ENTRY *const target,
5297 ENTRY *const source)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305298 { /* void */ }
5299
5300/* ./tinfo/captoinfo.c */
5301
5302#undef _nc_captoinfo
5303char *_nc_captoinfo(
micky3879b9f5e72025-07-08 18:04:53 -04005304 const char *cap,
5305 const char *s,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305306 int const parameterized)
5307 { return(*(char **)0); }
5308
5309#undef _nc_infotocap
5310char *_nc_infotocap(
micky3879b9f5e72025-07-08 18:04:53 -04005311 const char *cap,
5312 const char *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305313 int const parameterized)
5314 { return(*(char **)0); }
5315
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305316/* ./tinfo/comp_expand.c */
5317
5318#undef _nc_tic_expand
5319char *_nc_tic_expand(
micky3879b9f5e72025-07-08 18:04:53 -04005320 const char *srcp,
5321 NCURSES_BOOL tic_format,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305322 int numbers)
5323 { return(*(char **)0); }
5324
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305325/* ./tinfo/comp_parse.c */
5326
5327#undef _nc_check_termtype2
5328void (*_nc_check_termtype2)(
micky3879b9f5e72025-07-08 18:04:53 -04005329 TERMTYPE2 *p1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305330 NCURSES_BOOL p2);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305331
5332#undef _nc_entry_match
5333NCURSES_BOOL _nc_entry_match(
micky3879b9f5e72025-07-08 18:04:53 -04005334 char *n1,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305335 char *n2)
5336 { return(*(NCURSES_BOOL *)0); }
5337
5338#undef _nc_read_entry_source
5339void _nc_read_entry_source(
micky3879b9f5e72025-07-08 18:04:53 -04005340 FILE *fp,
5341 char *buf,
5342 int literal,
5343 NCURSES_BOOL silent,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305344 NCURSES_BOOL (*hook)(
5345 ENTRY *p1))
5346 { /* void */ }
5347
5348#undef _nc_resolve_uses2
5349int _nc_resolve_uses2(
micky3879b9f5e72025-07-08 18:04:53 -04005350 NCURSES_BOOL fullresolve,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305351 NCURSES_BOOL literal)
5352 { return(*(int *)0); }
5353
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305354/* ./tinfo/comp_scan.c */
5355
5356#undef _nc_syntax
5357int _nc_syntax;
Steve Kondikae271bc2015-11-15 02:50:53 +01005358#undef _nc_strict_bsd
5359int _nc_strict_bsd;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305360#undef _nc_curr_file_pos
5361long _nc_curr_file_pos;
5362#undef _nc_comment_start
5363long _nc_comment_start;
5364#undef _nc_comment_end
5365long _nc_comment_end;
5366#undef _nc_start_line
5367long _nc_start_line;
5368#undef _nc_curr_token
5369struct token _nc_curr_token;
5370#undef _nc_disable_period
5371NCURSES_BOOL _nc_disable_period;
5372
5373#undef _nc_reset_input
5374void _nc_reset_input(
micky3879b9f5e72025-07-08 18:04:53 -04005375 FILE *fp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305376 char *buf)
5377 { /* void */ }
5378
5379#undef _nc_get_token
5380int _nc_get_token(
5381 NCURSES_BOOL silent)
5382 { return(*(int *)0); }
5383
5384#undef _nc_trans_string
5385int _nc_trans_string(
micky3879b9f5e72025-07-08 18:04:53 -04005386 char *ptr,
5387 const char *const last)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305388 { return(*(int *)0); }
5389
5390#undef _nc_push_token
5391void _nc_push_token(
5392 int tokclass)
5393 { /* void */ }
5394
5395#undef _nc_panic_mode
5396void _nc_panic_mode(
5397 char ch)
5398 { /* void */ }
5399
5400/* ./tinfo/parse_entry.c */
5401
5402#undef _nc_parse_entry
5403int _nc_parse_entry(
micky3879b9f5e72025-07-08 18:04:53 -04005404 ENTRY *entryp,
5405 int literal,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305406 NCURSES_BOOL silent)
5407 { return(*(int *)0); }
5408
5409#undef _nc_capcmp
5410int _nc_capcmp(
micky3879b9f5e72025-07-08 18:04:53 -04005411 const char *s,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305412 const char *t)
5413 { return(*(int *)0); }
5414
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305415/* ./tinfo/write_entry.c */
5416
5417#undef _nc_set_writedir
5418void _nc_set_writedir(
Steve Kondikae271bc2015-11-15 02:50:53 +01005419 const char *dir)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305420 { /* void */ }
5421
5422#undef _nc_write_entry
5423void _nc_write_entry(
micky3879b9f5e72025-07-08 18:04:53 -04005424 TERMTYPE2 *const tp)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305425 { /* void */ }
5426
micky3879b9f5e72025-07-08 18:04:53 -04005427#undef _nc_write_object
5428int _nc_write_object(
5429 TERMTYPE2 *tp,
5430 char *buffer,
5431 unsigned *offset,
5432 unsigned limit)
5433 { return(*(int *)0); }
5434
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305435#undef _nc_tic_written
5436int _nc_tic_written(void)
5437 { return(*(int *)0); }
5438
5439/* ./base/define_key.c */
5440
Steve Kondikae271bc2015-11-15 02:50:53 +01005441#undef define_key_sp
5442int define_key_sp(
micky3879b9f5e72025-07-08 18:04:53 -04005443 SCREEN *sp,
5444 const char *str,
Steve Kondikae271bc2015-11-15 02:50:53 +01005445 int keycode)
5446 { return(*(int *)0); }
5447
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305448#undef define_key
5449int define_key(
micky3879b9f5e72025-07-08 18:04:53 -04005450 const char *str,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305451 int keycode)
5452 { return(*(int *)0); }
5453
5454/* ./tinfo/hashed_db.c */
5455
5456#undef _nc_hashed_db
5457void _nc_hashed_db(void)
5458 { /* void */ }
5459
5460/* ./base/key_defined.c */
5461
Steve Kondikae271bc2015-11-15 02:50:53 +01005462#undef key_defined_sp
5463int key_defined_sp(
micky3879b9f5e72025-07-08 18:04:53 -04005464 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01005465 const char *str)
5466 { return(*(int *)0); }
5467
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305468#undef key_defined
5469int key_defined(
5470 const char *str)
5471 { return(*(int *)0); }
5472
5473/* ./base/keybound.c */
5474
Steve Kondikae271bc2015-11-15 02:50:53 +01005475#undef keybound_sp
5476char *keybound_sp(
micky3879b9f5e72025-07-08 18:04:53 -04005477 SCREEN *sp,
5478 int code,
Steve Kondikae271bc2015-11-15 02:50:53 +01005479 int count)
5480 { return(*(char **)0); }
5481
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305482#undef keybound
5483char *keybound(
micky3879b9f5e72025-07-08 18:04:53 -04005484 int code,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305485 int count)
5486 { return(*(char **)0); }
5487
5488/* ./base/keyok.c */
5489
Steve Kondikae271bc2015-11-15 02:50:53 +01005490#undef keyok_sp
5491int keyok_sp(
micky3879b9f5e72025-07-08 18:04:53 -04005492 SCREEN *sp,
5493 int c,
Steve Kondikae271bc2015-11-15 02:50:53 +01005494 NCURSES_BOOL flag)
5495 { return(*(int *)0); }
5496
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305497#undef keyok
5498int keyok(
micky3879b9f5e72025-07-08 18:04:53 -04005499 int c,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305500 NCURSES_BOOL flag)
5501 { return(*(int *)0); }
5502
5503/* ./base/version.c */
5504
5505#undef curses_version
5506const char *curses_version(void)
5507 { return(*(const char **)0); }