154225Sbostic /*- 2*61275Sbostic * Copyright (c) 1992, 1993 3*61275Sbostic * The Regents of the University of California. All rights reserved. 454225Sbostic * 554225Sbostic * This code is derived from software contributed to Berkeley by 654225Sbostic * Christos Zoulas of Cornell University. 754225Sbostic * 854225Sbostic * %sccs.include.redist.c% 954225Sbostic * 10*61275Sbostic * @(#)parse.h 8.1 (Berkeley) 06/04/93 1154225Sbostic */ 1254225Sbostic 1354225Sbostic /* 1454225Sbostic * el.parse.h: Parser functions 1554225Sbostic */ 1654225Sbostic #ifndef _h_el_parse 1754225Sbostic #define _h_el_parse 1854225Sbostic 1954225Sbostic protected int parse_line __P((EditLine *, const char *)); 2054225Sbostic protected int parse__escape __P((const char ** const)); 2154225Sbostic protected char * parse__string __P((char *, const char *)); 2254225Sbostic protected int parse_cmd __P((EditLine *, const char *)); 2354225Sbostic 2454225Sbostic #endif /* _h_el_parse */ 25