diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2001-10-01 08:41:27 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-10-01 08:41:27 +0000 |
commit | 3c195773444850fbd9cf231761a4f76eaf863e5a (patch) | |
tree | f9436ba88ca8f8420af319b0a12dd175381b507b /lib/libedit/parse.h | |
parent | c3aa3459b1000cef0734f66507785c13a7083e2a (diff) |
Notes
Diffstat (limited to 'lib/libedit/parse.h')
-rw-r--r-- | lib/libedit/parse.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/libedit/parse.h b/lib/libedit/parse.h index 060174655354c..356750d7ad604 100644 --- a/lib/libedit/parse.h +++ b/lib/libedit/parse.h @@ -34,17 +34,19 @@ * SUCH DAMAGE. * * @(#)parse.h 8.1 (Berkeley) 6/4/93 + * $NetBSD: parse.h,v 1.3 1999/07/02 15:21:26 simonb Exp $ + * $FreeBSD$ */ /* * el.parse.h: Parser functions */ #ifndef _h_el_parse -#define _h_el_parse +#define _h_el_parse -protected int parse_line __P((EditLine *, const char *)); -protected int parse__escape __P((const char ** const)); -protected char * parse__string __P((char *, const char *)); -protected int parse_cmd __P((EditLine *, const char *)); +protected int parse_line(EditLine *, const char *); +protected int parse__escape(const char ** const); +protected char *parse__string(char *, const char *); +protected int parse_cmd(EditLine *, const char *); #endif /* _h_el_parse */ |