Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1 | /**************************************************************************** |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2 | * Copyright 2020-2021,2023 Thomas E. Dickey * |
| 3 | * Copyright 2012-2016,2017 Free Software Foundation, Inc. * |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4 | * * |
| 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 Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 38 | |
| 39 | #undef _nc_init_entry |
| 40 | void _nc_init_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 41 | ENTRY *const tp) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 42 | { /* void */ } |
| 43 | |
| 44 | #undef _nc_copy_entry |
| 45 | ENTRY *_nc_copy_entry( |
| 46 | ENTRY *oldp) |
| 47 | { return(*(ENTRY **)0); } |
| 48 | |
| 49 | #undef _nc_save_str |
| 50 | char *_nc_save_str( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 51 | const char *string) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 52 | { return(*(char **)0); } |
| 53 | |
| 54 | #undef _nc_wrap_entry |
| 55 | void _nc_wrap_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 56 | ENTRY *const ep, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 57 | NCURSES_BOOL copy_strings) |
| 58 | { /* void */ } |
| 59 | |
| 60 | #undef _nc_merge_entry |
| 61 | void _nc_merge_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 62 | ENTRY *const target, |
| 63 | ENTRY *const source) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 64 | { /* void */ } |
| 65 | |
| 66 | /* ./tinfo/captoinfo.c */ |
| 67 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 68 | #undef _nc_captoinfo |
| 69 | char *_nc_captoinfo( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 70 | const char *cap, |
| 71 | const char *s, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 72 | int const parameterized) |
| 73 | { return(*(char **)0); } |
| 74 | |
| 75 | #undef _nc_infotocap |
| 76 | char *_nc_infotocap( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 77 | const char *cap, |
| 78 | const char *str, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 79 | int const parameterized) |
| 80 | { return(*(char **)0); } |
| 81 | |
| 82 | /* ./tinfo/comp_expand.c */ |
| 83 | |
| 84 | #undef _nc_tic_expand |
| 85 | char *_nc_tic_expand( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 86 | const char *srcp, |
| 87 | NCURSES_BOOL tic_format, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 88 | int numbers) |
| 89 | { return(*(char **)0); } |
| 90 | |
| 91 | /* ./tinfo/comp_parse.c */ |
| 92 | |
| 93 | #undef _nc_check_termtype2 |
| 94 | void (*_nc_check_termtype2)( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 95 | TERMTYPE *p1, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 96 | NCURSES_BOOL p2); |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 97 | |
| 98 | #undef _nc_entry_match |
| 99 | NCURSES_BOOL _nc_entry_match( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 100 | char *n1, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 101 | char *n2) |
| 102 | { return(*(NCURSES_BOOL *)0); } |
| 103 | |
| 104 | #undef _nc_read_entry_source |
| 105 | void _nc_read_entry_source( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 106 | FILE *fp, |
| 107 | char *buf, |
| 108 | int literal, |
| 109 | NCURSES_BOOL silent, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 110 | NCURSES_BOOL (*hook)( |
| 111 | ENTRY *p1)) |
| 112 | { /* void */ } |
| 113 | |
| 114 | #undef _nc_resolve_uses2 |
| 115 | int _nc_resolve_uses2( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 116 | NCURSES_BOOL fullresolve, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 117 | NCURSES_BOOL literal) |
| 118 | { return(*(int *)0); } |
| 119 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 120 | /* ./tinfo/comp_scan.c */ |
| 121 | |
| 122 | #undef _nc_syntax |
| 123 | int _nc_syntax; |
| 124 | #undef _nc_strict_bsd |
| 125 | int _nc_strict_bsd; |
| 126 | #undef _nc_curr_file_pos |
| 127 | long _nc_curr_file_pos; |
| 128 | #undef _nc_comment_start |
| 129 | long _nc_comment_start; |
| 130 | #undef _nc_comment_end |
| 131 | long _nc_comment_end; |
| 132 | #undef _nc_start_line |
| 133 | long _nc_start_line; |
| 134 | #undef _nc_curr_token |
| 135 | struct token _nc_curr_token; |
| 136 | #undef _nc_disable_period |
| 137 | NCURSES_BOOL _nc_disable_period; |
| 138 | |
| 139 | #undef _nc_reset_input |
| 140 | void _nc_reset_input( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 141 | FILE *fp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 142 | char *buf) |
| 143 | { /* void */ } |
| 144 | |
| 145 | #undef _nc_get_token |
| 146 | int _nc_get_token( |
| 147 | NCURSES_BOOL silent) |
| 148 | { return(*(int *)0); } |
| 149 | |
| 150 | #undef _nc_trans_string |
| 151 | int _nc_trans_string( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 152 | char *ptr, |
| 153 | const char *const last) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 154 | { return(*(int *)0); } |
| 155 | |
| 156 | #undef _nc_push_token |
| 157 | void _nc_push_token( |
| 158 | int tokclass) |
| 159 | { /* void */ } |
| 160 | |
| 161 | #undef _nc_panic_mode |
| 162 | void _nc_panic_mode( |
| 163 | char ch) |
| 164 | { /* void */ } |
| 165 | |
| 166 | /* ./tinfo/parse_entry.c */ |
| 167 | |
| 168 | #undef _nc_parse_entry |
| 169 | int _nc_parse_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 170 | ENTRY *entryp, |
| 171 | int literal, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 172 | NCURSES_BOOL silent) |
| 173 | { return(*(int *)0); } |
| 174 | |
| 175 | #undef _nc_capcmp |
| 176 | int _nc_capcmp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 177 | const char *s, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 178 | const char *t) |
| 179 | { return(*(int *)0); } |
| 180 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 181 | /* ./tinfo/write_entry.c */ |
| 182 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 183 | #undef _nc_set_writedir |
| 184 | void _nc_set_writedir( |
| 185 | const char *dir) |
| 186 | { /* void */ } |
| 187 | |
| 188 | #undef _nc_write_entry |
| 189 | void _nc_write_entry( |
| 190 | TERMTYPE *const tp) |
| 191 | { /* void */ } |
| 192 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 193 | #undef _nc_write_object |
| 194 | int _nc_write_object( |
| 195 | TERMTYPE *tp, |
| 196 | char *buffer, |
| 197 | unsigned *offset, |
| 198 | unsigned limit) |
| 199 | { return(*(int *)0); } |
| 200 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 201 | #undef _nc_tic_written |
| 202 | int _nc_tic_written(void) |
| 203 | { return(*(int *)0); } |