Deleted Added
full compact
parser.h (248980) parser.h (253650)
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

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)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

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)parser.h 8.3 (Berkeley) 5/4/95
33 * $FreeBSD: head/bin/sh/parser.h 248980 2013-04-01 17:18:22Z jilles $
33 * $FreeBSD: head/bin/sh/parser.h 253650 2013-07-25 15:08:41Z jilles $
34 */
35
36/* control characters in argument strings */
37#define CTLESC '\300'
38#define CTLVAR '\301'
39#define CTLENDVAR '\371'
40#define CTLBACKQ '\372'
41#define CTLQUOTE 01 /* ored with CTLBACKQ code if in quotes */

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

74extern int tokpushback;
75#define NEOF ((union node *)&tokpushback)
76extern int whichprompt; /* 1 == PS1, 2 == PS2 */
77extern const char *const parsekwd[];
78
79
80union node *parsecmd(int);
81void fixredir(union node *, const char *, int);
34 */
35
36/* control characters in argument strings */
37#define CTLESC '\300'
38#define CTLVAR '\301'
39#define CTLENDVAR '\371'
40#define CTLBACKQ '\372'
41#define CTLQUOTE 01 /* ored with CTLBACKQ code if in quotes */

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

74extern int tokpushback;
75#define NEOF ((union node *)&tokpushback)
76extern int whichprompt; /* 1 == PS1, 2 == PS2 */
77extern const char *const parsekwd[];
78
79
80union node *parsecmd(int);
81void fixredir(union node *, const char *, int);
82void resetparser(void);
82int goodname(const char *);
83int isassignment(const char *);
84char *getprompt(void *);
85const char *expandstr(const char *);
83int goodname(const char *);
84int isassignment(const char *);
85char *getprompt(void *);
86const char *expandstr(const char *);