blob: 85db89bce08b18797a0d1b4af727408bd44179e7 [file] [log] [blame]
Steve Kondikae271bc2015-11-15 02:50:53 +01001/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2020-2021,2023 Thomas E. Dickey *
3 * Copyright 2012-2016,2017 Free Software Foundation, Inc. *
Steve Kondikae271bc2015-11-15 02:50:53 +01004 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************/
29
30/****************************************************************************
31 * Author: Thomas E. Dickey 2012-on *
32 ****************************************************************************/
33/* LINTLIBRARY */
34
35/* ./tinfo/alloc_entry.c */
36
37#include <curses.priv.h>
Steve Kondikae271bc2015-11-15 02:50:53 +010038
39#undef _nc_init_entry
40void _nc_init_entry(
micky3879b9f5e72025-07-08 18:04:53 -040041 ENTRY *const tp)
Steve Kondikae271bc2015-11-15 02:50:53 +010042 { /* void */ }
43
44#undef _nc_copy_entry
45ENTRY *_nc_copy_entry(
46 ENTRY *oldp)
47 { return(*(ENTRY **)0); }
48
49#undef _nc_save_str
50char *_nc_save_str(
micky3879b9f5e72025-07-08 18:04:53 -040051 const char *string)
Steve Kondikae271bc2015-11-15 02:50:53 +010052 { return(*(char **)0); }
53
54#undef _nc_wrap_entry
55void _nc_wrap_entry(
micky3879b9f5e72025-07-08 18:04:53 -040056 ENTRY *const ep,
Steve Kondikae271bc2015-11-15 02:50:53 +010057 NCURSES_BOOL copy_strings)
58 { /* void */ }
59
60#undef _nc_merge_entry
61void _nc_merge_entry(
micky3879b9f5e72025-07-08 18:04:53 -040062 ENTRY *const target,
63 ENTRY *const source)
Steve Kondikae271bc2015-11-15 02:50:53 +010064 { /* void */ }
65
66/* ./tinfo/captoinfo.c */
67
Steve Kondikae271bc2015-11-15 02:50:53 +010068#undef _nc_captoinfo
69char *_nc_captoinfo(
micky3879b9f5e72025-07-08 18:04:53 -040070 const char *cap,
71 const char *s,
Steve Kondikae271bc2015-11-15 02:50:53 +010072 int const parameterized)
73 { return(*(char **)0); }
74
75#undef _nc_infotocap
76char *_nc_infotocap(
micky3879b9f5e72025-07-08 18:04:53 -040077 const char *cap,
78 const char *str,
Steve Kondikae271bc2015-11-15 02:50:53 +010079 int const parameterized)
80 { return(*(char **)0); }
81
82/* ./tinfo/comp_expand.c */
83
84#undef _nc_tic_expand
85char *_nc_tic_expand(
micky3879b9f5e72025-07-08 18:04:53 -040086 const char *srcp,
87 NCURSES_BOOL tic_format,
Steve Kondikae271bc2015-11-15 02:50:53 +010088 int numbers)
89 { return(*(char **)0); }
90
91/* ./tinfo/comp_parse.c */
92
93#undef _nc_check_termtype2
94void (*_nc_check_termtype2)(
micky3879b9f5e72025-07-08 18:04:53 -040095 TERMTYPE2 *p1,
Steve Kondikae271bc2015-11-15 02:50:53 +010096 NCURSES_BOOL p2);
Steve Kondikae271bc2015-11-15 02:50:53 +010097
98#undef _nc_entry_match
99NCURSES_BOOL _nc_entry_match(
micky3879b9f5e72025-07-08 18:04:53 -0400100 char *n1,
Steve Kondikae271bc2015-11-15 02:50:53 +0100101 char *n2)
102 { return(*(NCURSES_BOOL *)0); }
103
104#undef _nc_read_entry_source
105void _nc_read_entry_source(
micky3879b9f5e72025-07-08 18:04:53 -0400106 FILE *fp,
107 char *buf,
108 int literal,
109 NCURSES_BOOL silent,
Steve Kondikae271bc2015-11-15 02:50:53 +0100110 NCURSES_BOOL (*hook)(
111 ENTRY *p1))
112 { /* void */ }
113
114#undef _nc_resolve_uses2
115int _nc_resolve_uses2(
micky3879b9f5e72025-07-08 18:04:53 -0400116 NCURSES_BOOL fullresolve,
Steve Kondikae271bc2015-11-15 02:50:53 +0100117 NCURSES_BOOL literal)
118 { return(*(int *)0); }
119
Steve Kondikae271bc2015-11-15 02:50:53 +0100120/* ./tinfo/comp_scan.c */
121
122#undef _nc_syntax
123int _nc_syntax;
124#undef _nc_strict_bsd
125int _nc_strict_bsd;
126#undef _nc_curr_file_pos
127long _nc_curr_file_pos;
128#undef _nc_comment_start
129long _nc_comment_start;
130#undef _nc_comment_end
131long _nc_comment_end;
132#undef _nc_start_line
133long _nc_start_line;
134#undef _nc_curr_token
135struct token _nc_curr_token;
136#undef _nc_disable_period
137NCURSES_BOOL _nc_disable_period;
138
139#undef _nc_reset_input
140void _nc_reset_input(
micky3879b9f5e72025-07-08 18:04:53 -0400141 FILE *fp,
Steve Kondikae271bc2015-11-15 02:50:53 +0100142 char *buf)
143 { /* void */ }
144
145#undef _nc_get_token
146int _nc_get_token(
147 NCURSES_BOOL silent)
148 { return(*(int *)0); }
149
150#undef _nc_trans_string
151int _nc_trans_string(
micky3879b9f5e72025-07-08 18:04:53 -0400152 char *ptr,
153 const char *const last)
Steve Kondikae271bc2015-11-15 02:50:53 +0100154 { return(*(int *)0); }
155
156#undef _nc_push_token
157void _nc_push_token(
158 int tokclass)
159 { /* void */ }
160
161#undef _nc_panic_mode
162void _nc_panic_mode(
163 char ch)
164 { /* void */ }
165
166/* ./tinfo/parse_entry.c */
167
168#undef _nc_parse_entry
169int _nc_parse_entry(
micky3879b9f5e72025-07-08 18:04:53 -0400170 ENTRY *entryp,
171 int literal,
Steve Kondikae271bc2015-11-15 02:50:53 +0100172 NCURSES_BOOL silent)
173 { return(*(int *)0); }
174
175#undef _nc_capcmp
176int _nc_capcmp(
micky3879b9f5e72025-07-08 18:04:53 -0400177 const char *s,
Steve Kondikae271bc2015-11-15 02:50:53 +0100178 const char *t)
179 { return(*(int *)0); }
180
Steve Kondikae271bc2015-11-15 02:50:53 +0100181/* ./tinfo/write_entry.c */
182
Steve Kondikae271bc2015-11-15 02:50:53 +0100183#undef _nc_set_writedir
184void _nc_set_writedir(
185 const char *dir)
186 { /* void */ }
187
188#undef _nc_write_entry
189void _nc_write_entry(
micky3879b9f5e72025-07-08 18:04:53 -0400190 TERMTYPE2 *const tp)
Steve Kondikae271bc2015-11-15 02:50:53 +0100191 { /* void */ }
192
micky3879b9f5e72025-07-08 18:04:53 -0400193#undef _nc_write_object
194int _nc_write_object(
195 TERMTYPE2 *tp,
196 char *buffer,
197 unsigned *offset,
198 unsigned limit)
199 { return(*(int *)0); }
200
Steve Kondikae271bc2015-11-15 02:50:53 +0100201#undef _nc_tic_written
202int _nc_tic_written(void)
203 { return(*(int *)0); }