Deleted Added
full compact
myhistedit.h (50471) myhistedit.h (90111)
1/*-
2 * Copyright (c) 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)myhistedit.h 8.2 (Berkeley) 5/4/95
1/*-
2 * Copyright (c) 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)myhistedit.h 8.2 (Berkeley) 5/4/95
34 * $FreeBSD: head/bin/sh/myhistedit.h 50471 1999-08-27 23:15:48Z peter $
34 * $FreeBSD: head/bin/sh/myhistedit.h 90111 2002-02-02 06:50:57Z imp $
35 */
36
37#include <histedit.h>
38
39extern History *hist;
40extern EditLine *el;
41extern int displayhist;
42
35 */
36
37#include <histedit.h>
38
39extern History *hist;
40extern EditLine *el;
41extern int displayhist;
42
43void histedit __P((void));
44void sethistsize __P((const char *));
45int histcmd __P((int, char **));
46int not_fcnumber __P((char *));
47int str_to_event __P((char *, int));
43void histedit(void);
44void sethistsize(const char *);
45int histcmd(int, char **);
46int not_fcnumber(char *);
47int str_to_event(char *, int);
48
48