1 /* $NetBSD: extern.h,v 1.3 2004/09/01 01:46:56 chs Exp $ */
4 * Copyright (c) 1997 Christos Zoulas. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 int ch_seek
__P((off_t
));
28 int ch_end_seek
__P((void));
29 int ch_beg_seek
__P((void));
30 off_t ch_length
__P((void));
31 off_t ch_tell
__P((void));
32 int ch_forw_get
__P((void));
33 int ch_back_get
__P((void));
34 void ch_init
__P((int, int));
35 int ch_addbuf
__P((int));
38 void start_mca
__P((int, char *));
39 int prompt
__P((void));
40 void commands
__P((void));
41 void editfile
__P((void));
42 void showlist
__P((void));
45 void noprefix
__P((void));
46 int cmd_decode
__P((int));
47 int cmd_search
__P((char *, char *));
50 void help
__P((void));
53 off_t forw_line
__P((off_t
));
54 off_t back_line
__P((off_t
));
57 void prewind
__P((void));
58 int pappend
__P((int));
59 off_t forw_raw_line
__P((off_t
));
60 off_t back_raw_line
__P((off_t
));
63 void clr_linenum
__P((void));
64 void add_lnum
__P((int, off_t
));
65 int find_linenum
__P((off_t
));
66 int currline
__P((int));
69 int edit
__P((char *));
70 void next_file
__P((int));
71 void prev_file
__P((int));
72 int main
__P((int, char **));
73 char *save
__P((char *));
74 void quit
__P((void)) __attribute__((noreturn
));
77 int option
__P((int, char **));
80 void lsystem
__P((char *));
81 int iread
__P((int, char *, int));
82 void intread
__P((void));
83 char *glob
__P((char *));
84 char *bad_file
__P((char *, char *, u_int
));
85 void strtcpy
__P((char *, char *, int));
88 void put_line
__P((void));
89 void flush
__P((void));
90 void purge
__P((void));
91 int putchr
__P((int));
92 void putstr
__P((char *));
93 void error
__P((char *));
94 void ierror
__P((char *));
97 off_t position
__P((int));
98 void add_forw_pos
__P((off_t
));
99 void add_back_pos
__P((off_t
));
100 void copytable
__P((void));
101 void pos_clear
__P((void));
102 int onscreen
__P((off_t
));
105 void eof_check
__P((void));
106 void squish_check
__P((void));
107 void forw
__P((int, off_t
, int));
108 void back
__P((int, off_t
, int));
109 void forward
__P((int, int));
110 void backward
__P((int, int));
111 void prepaint
__P((off_t
));
112 void repaint
__P((void));
113 void jump_forw
__P((void));
114 void jump_back
__P((int));
115 void jump_percent
__P((int));
116 void jump_loc
__P((off_t
));
117 void init_mark
__P((void));
118 void setmark
__P((int));
119 void lastmark
__P((void));
120 void gomark
__P((int));
121 int get_back_scroll
__P((void));
122 int search
__P((int, char *, int, int));
125 void raw_mode
__P((int));
126 void get_term
__P((void));
127 void init
__P((void));
128 void deinit
__P((void));
129 void home
__P((void));
130 void add_line
__P((void));
131 void lower_left
__P((void));
132 void bell
__P((void));
133 void clear
__P((void));
134 void clear_eol
__P((void));
135 void so_enter
__P((void));
136 void so_exit
__P((void));
137 void ul_enter
__P((void));
138 void ul_exit
__P((void));
139 void bo_enter
__P((void));
140 void bo_exit
__P((void));
141 void backspace
__P((void));
142 void putbs
__P((void));
145 void winch
__P((int));
146 void init_signals
__P((int));
147 void psignals
__P((void));
150 void open_getchr
__P((void));
151 int getchr
__P((void));
154 extern char *current_file
;
155 extern char *current_name
;
156 extern char *firstsearch
;
158 extern char *next_name
;
160 extern int any_display
;
161 extern int auto_wrap
;
162 extern int back_scroll
;
170 extern int erase_char
;
176 extern int kill_char
;
179 extern int quit_at_eof
;
182 extern int retain_below
;
183 extern int sc_height
;
185 extern int sc_window
;
186 extern int screen_trashed
;
187 extern int scroll_lines
;
189 extern int short_file
;
194 extern int top_scroll
;
197 extern int werase_char
;