Deleted Added
full compact
parser.h (201053) parser.h (214512)
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 201053 2009-12-27 18:04:05Z jilles $
33 * $FreeBSD: head/bin/sh/parser.h 214512 2010-10-29 13:42:18Z jilles $
34 */
35
36/* control characters in argument strings */
37#define CTLESC '\201'
38#define CTLVAR '\202'
39#define CTLENDVAR '\203'
40#define CTLBACKQ '\204'
41#define CTLQUOTE 01 /* ored with CTLBACKQ code if in quotes */
42/* CTLBACKQ | CTLQUOTE == '\205' */
43#define CTLARI '\206'
44#define CTLENDARI '\207'
45#define CTLQUOTEMARK '\210'
34 */
35
36/* control characters in argument strings */
37#define CTLESC '\201'
38#define CTLVAR '\202'
39#define CTLENDVAR '\203'
40#define CTLBACKQ '\204'
41#define CTLQUOTE 01 /* ored with CTLBACKQ code if in quotes */
42/* CTLBACKQ | CTLQUOTE == '\205' */
43#define CTLARI '\206'
44#define CTLENDARI '\207'
45#define CTLQUOTEMARK '\210'
46#define CTLQUOTEEND '\211' /* only for ${v+-...} */
46
47/* variable substitution byte (follows CTLVAR) */
48#define VSTYPE 0x0f /* type of variable substitution */
49#define VSNUL 0x10 /* colon--treat the empty string as unset */
50#define VSLINENO 0x20 /* expansion of $LINENO, the line number \
51 follows immediately */
52#define VSQUOTE 0x80 /* inside double quotes--suppress splitting */
53

--- 29 unchanged lines hidden ---
47
48/* variable substitution byte (follows CTLVAR) */
49#define VSTYPE 0x0f /* type of variable substitution */
50#define VSNUL 0x10 /* colon--treat the empty string as unset */
51#define VSLINENO 0x20 /* expansion of $LINENO, the line number \
52 follows immediately */
53#define VSQUOTE 0x80 /* inside double quotes--suppress splitting */
54

--- 29 unchanged lines hidden ---