Deleted Added
full compact
term.h (9898) term.h (63948)
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Christos Zoulas of Cornell University.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)term.h 8.1 (Berkeley) 6/4/93
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Christos Zoulas of Cornell University.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)term.h 8.1 (Berkeley) 6/4/93
37 *
38 * $FreeBSD: head/lib/libedit/term.h 63948 2000-07-28 00:42:54Z ache $
37 */
38
39/*
40 * el.term.h: Termcap header
41 */
42#ifndef _h_el_term
43#define _h_el_term
44

--- 26 unchanged lines hidden (view full) ---

71
72/*
73 * fKey indexes
74 */
75#define A_K_DN 0
76#define A_K_UP 1
77#define A_K_LT 2
78#define A_K_RT 3
39 */
40
41/*
42 * el.term.h: Termcap header
43 */
44#ifndef _h_el_term
45#define _h_el_term
46

--- 26 unchanged lines hidden (view full) ---

73
74/*
75 * fKey indexes
76 */
77#define A_K_DN 0
78#define A_K_UP 1
79#define A_K_LT 2
80#define A_K_RT 3
79#define A_K_NKEYS 4
81#define A_K_HO 4
82#define A_K_EN 5
83#define A_K_NKEYS 6
80
81protected void term_move_to_line __P((EditLine *, int));
82protected void term_move_to_char __P((EditLine *, int));
83protected void term_clear_EOL __P((EditLine *, int));
84protected void term_overwrite __P((EditLine *, char *, int));
85protected void term_insertwrite __P((EditLine *, char *, int));
86protected void term_deletechars __P((EditLine *, int));
87protected void term_clear_screen __P((EditLine *));

--- 31 unchanged lines hidden ---
84
85protected void term_move_to_line __P((EditLine *, int));
86protected void term_move_to_char __P((EditLine *, int));
87protected void term_clear_EOL __P((EditLine *, int));
88protected void term_overwrite __P((EditLine *, char *, int));
89protected void term_insertwrite __P((EditLine *, char *, int));
90protected void term_deletechars __P((EditLine *, int));
91protected void term_clear_screen __P((EditLine *));

--- 31 unchanged lines hidden ---