Deleted Added
full compact
parser.h (17987) parser.h (20425)
1/*-
2 * Copyright (c) 1991, 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 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)parser.h 8.3 (Berkeley) 5/4/95
1/*-
2 * Copyright (c) 1991, 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 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)parser.h 8.3 (Berkeley) 5/4/95
37 * $Id: parser.h,v 1.2 1994/09/24 02:58:09 davidg Exp $
37 * $Id: parser.h,v 1.3 1996/09/01 10:21:34 peter Exp $
38 */
39
40/* control characters in argument strings */
41#define CTLESC '\201'
42#define CTLVAR '\202'
43#define CTLENDVAR '\203'
44#define CTLBACKQ '\204'
45#define CTLQUOTE 01 /* ored with CTLBACKQ code if in quotes */

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

73extern int tokpushback;
74#define NEOF ((union node *)&tokpushback)
75extern int whichprompt; /* 1 == PS1, 2 == PS2 */
76
77
78union node *parsecmd __P((int));
79void fixredir __P((union node *, const char *, int));
80int goodname __P((char *));
38 */
39
40/* control characters in argument strings */
41#define CTLESC '\201'
42#define CTLVAR '\202'
43#define CTLENDVAR '\203'
44#define CTLBACKQ '\204'
45#define CTLQUOTE 01 /* ored with CTLBACKQ code if in quotes */

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

73extern int tokpushback;
74#define NEOF ((union node *)&tokpushback)
75extern int whichprompt; /* 1 == PS1, 2 == PS2 */
76
77
78union node *parsecmd __P((int));
79void fixredir __P((union node *, const char *, int));
80int goodname __P((char *));
81char *getprompt __P((void *));
81char *getprompt __P((void *));