xref: /original-bsd/lib/libedit/parse.h (revision c3e32dec)
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  * %sccs.include.redist.c%
9  *
10  *	@(#)parse.h	8.1 (Berkeley) 06/04/93
11  */
12 
13 /*
14  * el.parse.h: Parser functions
15  */
16 #ifndef _h_el_parse
17 #define _h_el_parse
18 
19 protected int		 parse_line	__P((EditLine *, const char *));
20 protected int		 parse__escape	__P((const char ** const));
21 protected char *	 parse__string	__P((char *, const char *));
22 protected int		 parse_cmd	__P((EditLine *, const char *));
23 
24 #endif /* _h_el_parse */
25