llib-lticw revision 302408
1254721Semaste/****************************************************************************
2254721Semaste * Copyright (c) 2012 Free Software Foundation, Inc.                        *
3254721Semaste *                                                                          *
4254721Semaste * Permission is hereby granted, free of charge, to any person obtaining a  *
5254721Semaste * copy of this software and associated documentation files (the            *
6254721Semaste * "Software"), to deal in the Software without restriction, including      *
7254721Semaste * without limitation the rights to use, copy, modify, merge, publish,      *
8254721Semaste * distribute, distribute with modifications, sublicense, and/or sell       *
9254721Semaste * copies of the Software, and to permit persons to whom the Software is    *
10254721Semaste * furnished to do so, subject to the following conditions:                 *
11254721Semaste *                                                                          *
12254721Semaste * The above copyright notice and this permission notice shall be included  *
13254721Semaste * in all copies or substantial portions of the Software.                   *
14254721Semaste *                                                                          *
15254721Semaste * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16254721Semaste * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17254721Semaste * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18254721Semaste * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19254721Semaste * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20254721Semaste * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21254721Semaste * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22254721Semaste *                                                                          *
23254721Semaste * Except as contained in this notice, the name(s) of the above copyright   *
24254721Semaste * holders shall not be used in advertising or otherwise to promote the     *
25254721Semaste * sale, use or other dealings in this Software without prior written       *
26254721Semaste * authorization.                                                           *
27254721Semaste ****************************************************************************/
28254721Semaste
29254721Semaste/****************************************************************************
30254721Semaste *  Author: Thomas E. Dickey 2012                                           *
31254721Semaste ****************************************************************************/
32254721Semaste/* LINTLIBRARY */
33254721Semaste
34254721Semaste/* ./tinfo/alloc_entry.c */
35254721Semaste
36254721Semaste#include <curses.priv.h>
37269024Semaste#include <tic.h>
38269024Semaste
39269024Semaste#undef _nc_init_entry
40254721Semastevoid	_nc_init_entry(
41254721Semaste		TERMTYPE *const tp)
42254721Semaste		{ /* void */ }
43254721Semaste
44254721Semaste#undef _nc_copy_entry
45254721SemasteENTRY	*_nc_copy_entry(
46254721Semaste		ENTRY	*oldp)
47254721Semaste		{ return(*(ENTRY **)0); }
48254721Semaste
49254721Semaste#undef _nc_save_str
50254721Semastechar	*_nc_save_str(
51254721Semaste		const char *const string)
52254721Semaste		{ return(*(char **)0); }
53254721Semaste
54254721Semaste#undef _nc_wrap_entry
55254721Semastevoid	_nc_wrap_entry(
56254721Semaste		ENTRY	*const ep, 
57269024Semaste		NCURSES_BOOL copy_strings)
58269024Semaste		{ /* void */ }
59269024Semaste
60269024Semaste#undef _nc_merge_entry
61269024Semastevoid	_nc_merge_entry(
62269024Semaste		TERMTYPE *const to, 
63269024Semaste		TERMTYPE *const from)
64269024Semaste		{ /* void */ }
65269024Semaste
66269024Semaste/* ./tinfo/captoinfo.c */
67269024Semaste
68269024Semaste#include <ctype.h>
69269024Semaste
70269024Semaste#undef _nc_captoinfo
71269024Semastechar	*_nc_captoinfo(
72269024Semaste		const char *cap, 
73269024Semaste		const char *s, 
74269024Semaste		int const parameterized)
75269024Semaste		{ return(*(char **)0); }
76269024Semaste
77269024Semaste#undef _nc_infotocap
78269024Semastechar	*_nc_infotocap(
79269024Semaste		const char *cap, 
80269024Semaste		const char *str, 
81269024Semaste		int const parameterized)
82269024Semaste		{ return(*(char **)0); }
83269024Semaste
84269024Semaste/* ./tinfo/comp_expand.c */
85254721Semaste
86254721Semaste#undef _nc_tic_expand
87254721Semastechar	*_nc_tic_expand(
88254721Semaste		const char *srcp, 
89254721Semaste		NCURSES_BOOL tic_format, 
90254721Semaste		int	numbers)
91254721Semaste		{ return(*(char **)0); }
92254721Semaste
93254721Semaste/* ./tinfo/comp_parse.c */
94254721Semaste
95254721Semaste#undef _nc_check_termtype2
96254721Semastevoid	(*_nc_check_termtype2)(
97254721Semaste		TERMTYPE *p1, 
98269024Semaste		NCURSES_BOOL p2);
99269024Semaste#undef _nc_check_termtype
100269024Semastevoid	(*_nc_check_termtype)(
101269024Semaste		TERMTYPE *p1);
102269024Semaste
103269024Semaste#undef _nc_entry_match
104254721SemasteNCURSES_BOOL _nc_entry_match(
105254721Semaste		char	*n1, 
106254721Semaste		char	*n2)
107254721Semaste		{ return(*(NCURSES_BOOL *)0); }
108254721Semaste
109254721Semaste#undef _nc_read_entry_source
110254721Semastevoid	_nc_read_entry_source(
111254721Semaste		FILE	*fp, 
112254721Semaste		char	*buf, 
113269024Semaste		int	literal, 
114269024Semaste		NCURSES_BOOL silent, 
115269024Semaste		NCURSES_BOOL (*hook)(
116254721Semaste		ENTRY	*p1))
117254721Semaste		{ /* void */ }
118254721Semaste
119254721Semaste#undef _nc_resolve_uses2
120269024Semasteint	_nc_resolve_uses2(
121254721Semaste		NCURSES_BOOL fullresolve, 
122254721Semaste		NCURSES_BOOL literal)
123254721Semaste		{ return(*(int *)0); }
124254721Semaste
125254721Semaste#undef _nc_resolve_uses
126254721Semasteint	_nc_resolve_uses(
127254721Semaste		NCURSES_BOOL fullresolve)
128254721Semaste		{ return(*(int *)0); }
129254721Semaste
130254721Semaste/* ./tinfo/comp_scan.c */
131254721Semaste
132254721Semaste#undef _nc_syntax
133254721Semasteint	_nc_syntax;
134254721Semaste#undef _nc_strict_bsd
135254721Semasteint	_nc_strict_bsd;
136254721Semaste#undef _nc_curr_file_pos
137254721Semastelong	_nc_curr_file_pos;
138254721Semaste#undef _nc_comment_start
139254721Semastelong	_nc_comment_start;
140254721Semaste#undef _nc_comment_end
141254721Semastelong	_nc_comment_end;
142254721Semaste#undef _nc_start_line
143254721Semastelong	_nc_start_line;
144254721Semaste#undef _nc_curr_token
145254721Semastestruct token _nc_curr_token;
146254721Semaste#undef _nc_disable_period
147254721SemasteNCURSES_BOOL _nc_disable_period;
148
149#undef _nc_reset_input
150void	_nc_reset_input(
151		FILE	*fp, 
152		char	*buf)
153		{ /* void */ }
154
155#undef _nc_get_token
156int	_nc_get_token(
157		NCURSES_BOOL silent)
158		{ return(*(int *)0); }
159
160#undef _nc_trans_string
161int	_nc_trans_string(
162		char	*ptr, 
163		char	*last)
164		{ return(*(int *)0); }
165
166#undef _nc_push_token
167void	_nc_push_token(
168		int	tokclass)
169		{ /* void */ }
170
171#undef _nc_panic_mode
172void	_nc_panic_mode(
173		char	ch)
174		{ /* void */ }
175
176/* ./tinfo/parse_entry.c */
177
178#undef _nc_parse_entry
179int	_nc_parse_entry(
180		struct entry *entryp, 
181		int	literal, 
182		NCURSES_BOOL silent)
183		{ return(*(int *)0); }
184
185#undef _nc_capcmp
186int	_nc_capcmp(
187		const char *s, 
188		const char *t)
189		{ return(*(int *)0); }
190
191typedef struct {
192    const char *from;
193    const char *to;
194} assoc;
195
196/* ./tinfo/write_entry.c */
197
198#include <hashed_db.h>
199
200#undef _nc_set_writedir
201void	_nc_set_writedir(
202		char	*dir)
203		{ /* void */ }
204
205#undef _nc_write_entry
206void	_nc_write_entry(
207		TERMTYPE *const tp)
208		{ /* void */ }
209
210#undef _nc_tic_written
211int	_nc_tic_written(void)
212		{ return(*(int *)0); }
213