Deleted Added
full compact
histedit.h (268782) histedit.h (278411)
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.41 2009/09/07 21:24:33 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.41 2009/09/07 21:24:33 christos Exp $
34 * $FreeBSD: stable/10/lib/libedit/histedit.h 268782 2014-07-17 02:14:25Z pfg $
34 * $FreeBSD: stable/10/lib/libedit/histedit.h 278411 2015-02-08 22:11:24Z bapt $
35 */
36
37/*
38 * histedit.h: Line editor and history interface.
39 */
40#ifndef _HISTEDIT_H_
41#define _HISTEDIT_H_
42

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

203#define H_SAVE 18 /* , const char *); */
204#define H_CLEAR 19 /* , void); */
205#define H_SETUNIQUE 20 /* , int); */
206#define H_GETUNIQUE 21 /* , void); */
207#define H_DEL 22 /* , int); */
208#define H_NEXT_EVDATA 23 /* , const int, histdata_t *); */
209#define H_DELDATA 24 /* , int, histdata_t *);*/
210#define H_REPLACE 25 /* , const char *, histdata_t); */
35 */
36
37/*
38 * histedit.h: Line editor and history interface.
39 */
40#ifndef _HISTEDIT_H_
41#define _HISTEDIT_H_
42

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

203#define H_SAVE 18 /* , const char *); */
204#define H_CLEAR 19 /* , void); */
205#define H_SETUNIQUE 20 /* , int); */
206#define H_GETUNIQUE 21 /* , void); */
207#define H_DEL 22 /* , int); */
208#define H_NEXT_EVDATA 23 /* , const int, histdata_t *); */
209#define H_DELDATA 24 /* , int, histdata_t *);*/
210#define H_REPLACE 25 /* , const char *, histdata_t); */
211#define H_SAVE_FP 26 /* , FILE*); */
211
212
213/*
214 * ==== Tokenization ====
215 */
216
217typedef struct tokenizer Tokenizer;
218

--- 17 unchanged lines hidden ---
212
213
214/*
215 * ==== Tokenization ====
216 */
217
218typedef struct tokenizer Tokenizer;
219

--- 17 unchanged lines hidden ---