llib-ltic revision 262639
175267Swollman/****************************************************************************
264499Swollman * Copyright (c) 2012 Free Software Foundation, Inc.                        *
358787Sru *                                                                          *
42742Swollman * Permission is hereby granted, free of charge, to any person obtaining a  *
52742Swollman * copy of this software and associated documentation files (the            *
62742Swollman * "Software"), to deal in the Software without restriction, including      *
72742Swollman * without limitation the rights to use, copy, modify, merge, publish,      *
82742Swollman * distribute, distribute with modifications, sublicense, and/or sell       *
958787Sru * copies of the Software, and to permit persons to whom the Software is    *
102742Swollman * furnished to do so, subject to the following conditions:                 *
112742Swollman *                                                                          *
1258787Sru * The above copyright notice and this permission notice shall be included  *
1358787Sru * in all copies or substantial portions of the Software.                   *
142742Swollman *                                                                          *
1558787Sru * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
1620094Swollman * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
1720094Swollman * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
1820094Swollman * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
1920094Swollman * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
2020094Swollman * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
2120094Swollman * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
2220094Swollman *                                                                          *
2320094Swollman * Except as contained in this notice, the name(s) of the above copyright   *
242742Swollman * holders shall not be used in advertising or otherwise to promote the     *
252742Swollman * sale, use or other dealings in this Software without prior written       *
262742Swollman * authorization.                                                           *
272742Swollman ****************************************************************************/
282742Swollman
2958787Sru/****************************************************************************
302742Swollman *  Author: Thomas E. Dickey 2012                                           *
312742Swollman ****************************************************************************/
322742Swollman/* LINTLIBRARY */
332742Swollman
342742Swollman/* ./tinfo/alloc_entry.c */
352742Swollman
3619878Swollman#include <curses.priv.h>
372742Swollman#include <tic.h>
382742Swollman
3919878Swollman#undef _nc_init_entry
4019878Swollmanvoid	_nc_init_entry(
412742Swollman		TERMTYPE *const tp)
4219878Swollman		{ /* void */ }
4343543Swollman
4419878Swollman#undef _nc_copy_entry
4519878SwollmanENTRY	*_nc_copy_entry(
4619878Swollman		ENTRY	*oldp)
472742Swollman		{ return(*(ENTRY **)0); }
489908Swollman
492742Swollman#undef _nc_save_str
502742Swollmanchar	*_nc_save_str(
512742Swollman		const char *const string)
522742Swollman		{ return(*(char **)0); }
532742Swollman
542742Swollman#undef _nc_wrap_entry
552742Swollmanvoid	_nc_wrap_entry(
562742Swollman		ENTRY	*const ep, 
572742Swollman		NCURSES_BOOL copy_strings)
5820094Swollman		{ /* void */ }
592742Swollman
6020094Swollman#undef _nc_merge_entry
6120094Swollmanvoid	_nc_merge_entry(
6220094Swollman		TERMTYPE *const to, 
6320094Swollman		TERMTYPE *const from)
6420094Swollman		{ /* void */ }
6520094Swollman
6620094Swollman/* ./tinfo/captoinfo.c */
6720094Swollman
6820094Swollman#include <ctype.h>
6920094Swollman
7020094Swollman#undef _nc_captoinfo
7120094Swollmanchar	*_nc_captoinfo(
7220094Swollman		const char *cap, 
7320094Swollman		const char *s, 
742742Swollman		int const parameterized)
752742Swollman		{ return(*(char **)0); }
762742Swollman
772742Swollman#undef _nc_infotocap
7819878Swollmanchar	*_nc_infotocap(
792742Swollman		const char *cap, 
802742Swollman		const char *str, 
812742Swollman		int const parameterized)
8258787Sru		{ return(*(char **)0); }
8317200Swollman
8458787Sru/* ./tinfo/comp_expand.c */
8558787Sru
8643014Swollman#undef _nc_tic_expand
8743014Swollmanchar	*_nc_tic_expand(
8843014Swollman		const char *srcp, 
8943014Swollman		NCURSES_BOOL tic_format, 
902742Swollman		int	numbers)
912742Swollman		{ return(*(char **)0); }
9219878Swollman
9319878Swollman/* ./tinfo/comp_parse.c */
9419878Swollman
9558787Sru#undef _nc_check_termtype2
9643014Swollmanvoid	(*_nc_check_termtype2)(
9775267Swollman		TERMTYPE *p1, 
982742Swollman		NCURSES_BOOL p2);
992742Swollman#undef _nc_check_termtype
10043014Swollmanvoid	(*_nc_check_termtype)(
10143014Swollman		TERMTYPE *p1);
10243014Swollman
1032742Swollman#undef _nc_entry_match
1042742SwollmanNCURSES_BOOL _nc_entry_match(
10519878Swollman		char	*n1, 
10619878Swollman		char	*n2)
10719878Swollman		{ return(*(NCURSES_BOOL *)0); }
10820094Swollman
10920094Swollman#undef _nc_read_entry_source
11043014Swollmanvoid	_nc_read_entry_source(
11143014Swollman		FILE	*fp, 
1122742Swollman		char	*buf, 
1132742Swollman		int	literal, 
1142742Swollman		NCURSES_BOOL silent, 
11567578Swollman		NCURSES_BOOL (*hook)(
1162742Swollman		ENTRY	*p1))
1172742Swollman		{ /* void */ }
1182742Swollman
1192742Swollman#undef _nc_resolve_uses2
1202742Swollmanint	_nc_resolve_uses2(
12175267Swollman		NCURSES_BOOL fullresolve, 
12219878Swollman		NCURSES_BOOL literal)
12319878Swollman		{ return(*(int *)0); }
1242742Swollman
12519878Swollman#undef _nc_resolve_uses
12619878Swollmanint	_nc_resolve_uses(
12719878Swollman		NCURSES_BOOL fullresolve)
1282742Swollman		{ return(*(int *)0); }
1292742Swollman
1302742Swollman/* ./tinfo/comp_scan.c */
13167578Swollman
1322742Swollman#undef _nc_syntax
13319878Swollmanint	_nc_syntax;
1342742Swollman#undef _nc_strict_bsd
1352742Swollmanint	_nc_strict_bsd;
1362742Swollman#undef _nc_curr_file_pos
1372742Swollmanlong	_nc_curr_file_pos;
13819878Swollman#undef _nc_comment_start
1392742Swollmanlong	_nc_comment_start;
1402742Swollman#undef _nc_comment_end
1412742Swollmanlong	_nc_comment_end;
1422742Swollman#undef _nc_start_line
1432742Swollmanlong	_nc_start_line;
1442742Swollman#undef _nc_curr_token
1452742Swollmanstruct token _nc_curr_token;
14614343Swollman#undef _nc_disable_period
1472742SwollmanNCURSES_BOOL _nc_disable_period;
14817200Swollman
14919878Swollman#undef _nc_reset_input
15019878Swollmanvoid	_nc_reset_input(
1512742Swollman		FILE	*fp, 
15219878Swollman		char	*buf)
1532742Swollman		{ /* void */ }
1542742Swollman
1552742Swollman#undef _nc_get_token
1562742Swollmanint	_nc_get_token(
15719878Swollman		NCURSES_BOOL silent)
1582742Swollman		{ return(*(int *)0); }
1592742Swollman
1602742Swollman#undef _nc_trans_string
1612742Swollmanint	_nc_trans_string(
16243014Swollman		char	*ptr, 
1632742Swollman		char	*last)
1642742Swollman		{ return(*(int *)0); }
1652742Swollman
1662742Swollman#undef _nc_push_token
16719878Swollmanvoid	_nc_push_token(
16819878Swollman		int	tokclass)
1692742Swollman		{ /* void */ }
1702742Swollman
1712742Swollman#undef _nc_panic_mode
1722742Swollmanvoid	_nc_panic_mode(
1732742Swollman		char	ch)
1742742Swollman		{ /* void */ }
1752742Swollman
1762742Swollman/* ./tinfo/parse_entry.c */
1772742Swollman
1782742Swollman#undef _nc_parse_entry
1792742Swollmanint	_nc_parse_entry(
1802742Swollman		struct entry *entryp, 
18119878Swollman		int	literal, 
1822742Swollman		NCURSES_BOOL silent)
1832742Swollman		{ return(*(int *)0); }
1842742Swollman
18514343Swollman#undef _nc_capcmp
18619878Swollmanint	_nc_capcmp(
18714343Swollman		const char *s, 
1882742Swollman		const char *t)
18914343Swollman		{ return(*(int *)0); }
1902742Swollman
19158787Srutypedef struct {
1922742Swollman    const char *from;
1932742Swollman    const char *to;
1942742Swollman} assoc;
1952742Swollman
1962742Swollman/* ./tinfo/write_entry.c */
1972742Swollman
19814343Swollman#include <hashed_db.h>
19914343Swollman
2002742Swollman#undef _nc_set_writedir
20167578Swollmanvoid	_nc_set_writedir(
20219878Swollman		char	*dir)
20314343Swollman		{ /* void */ }
20419878Swollman
20519878Swollman#undef _nc_write_entry
20614343Swollmanvoid	_nc_write_entry(
2072742Swollman		TERMTYPE *const tp)
2082742Swollman		{ /* void */ }
2092742Swollman
21067578Swollman#undef _nc_tic_written
21119878Swollmanint	_nc_tic_written(void)
21214343Swollman		{ return(*(int *)0); }
21367578Swollman