Deleted Added
full compact
histedit.h (225736) histedit.h (237738)
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

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

26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)histedit.h 8.2 (Berkeley) 1/3/94
33 * $NetBSD: histedit.h,v 1.32 2007/06/10 20:20:28 christos Exp $
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

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

26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)histedit.h 8.2 (Berkeley) 1/3/94
33 * $NetBSD: histedit.h,v 1.32 2007/06/10 20:20:28 christos Exp $
34 * $FreeBSD: stable/9/lib/libedit/histedit.h 220370 2011-04-05 18:41:01Z obrien $
34 * $FreeBSD: stable/9/lib/libedit/histedit.h 237738 2012-06-29 03:01:38Z pfg $
35 */
36
37/*
38 * histedit.h: Line editor and history interface.
39 */
40#ifndef _HISTEDIT_H_
41#define _HISTEDIT_H_
42

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

126#define EL_ADDFN 9 /* , const char *, const char * */
127 /* , el_func_t); */
128#define EL_HIST 10 /* , hist_fun_t, const char *); */
129#define EL_EDITMODE 11 /* , int); */
130#define EL_RPROMPT 12 /* , el_pfunc_t); */
131#define EL_GETCFN 13 /* , el_rfunc_t); */
132#define EL_CLIENTDATA 14 /* , void *); */
133#define EL_UNBUFFERED 15 /* , int); */
35 */
36
37/*
38 * histedit.h: Line editor and history interface.
39 */
40#ifndef _HISTEDIT_H_
41#define _HISTEDIT_H_
42

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

126#define EL_ADDFN 9 /* , const char *, const char * */
127 /* , el_func_t); */
128#define EL_HIST 10 /* , hist_fun_t, const char *); */
129#define EL_EDITMODE 11 /* , int); */
130#define EL_RPROMPT 12 /* , el_pfunc_t); */
131#define EL_GETCFN 13 /* , el_rfunc_t); */
132#define EL_CLIENTDATA 14 /* , void *); */
133#define EL_UNBUFFERED 15 /* , int); */
134#define EL_PREP_TERM 16 /* , int); */
134#define EL_PREP_TERM 16 /* , int); */
135#define EL_GETTC 17 /* , const char *, ..., NULL); */
135#define EL_GETTC 17 /* , const char *, ..., NULL); */
136#define EL_GETFP 18 /* , int, FILE **) */
137#define EL_SETFP 19 /* , int, FILE *) */
136#define EL_GETFP 18 /* , int, FILE **); */
137#define EL_SETFP 19 /* , int, FILE *); */
138#define EL_REFRESH 20 /* , void); set */
139#define EL_PROMPT_ESC 21 /* , prompt_func, Char); set/get */
140#define EL_RPROMPT_ESC 22 /* , prompt_func, Char); set/get */
141#define EL_RESIZE 23 /* , el_zfunc_t, void *); set */
142
143#define EL_BUILTIN_GETCFN (NULL)
144
145/*

--- 97 unchanged lines hidden ---
138#define EL_REFRESH 20 /* , void); set */
139#define EL_PROMPT_ESC 21 /* , prompt_func, Char); set/get */
140#define EL_RPROMPT_ESC 22 /* , prompt_func, Char); set/get */
141#define EL_RESIZE 23 /* , el_zfunc_t, void *); set */
142
143#define EL_BUILTIN_GETCFN (NULL)
144
145/*

--- 97 unchanged lines hidden ---