Deleted Added
full compact
expand.h (200956) expand.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 * @(#)expand.h 8.2 (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 * @(#)expand.h 8.2 (Berkeley) 5/4/95
33 * $FreeBSD: head/bin/sh/expand.h 200956 2009-12-24 18:41:14Z jilles $
33 * $FreeBSD: head/bin/sh/expand.h 214512 2010-10-29 13:42:18Z jilles $
34 */
35
36struct strlist {
37 struct strlist *next;
38 char *text;
39};
40
41

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

47/*
48 * expandarg() flags
49 */
50#define EXP_FULL 0x1 /* perform word splitting & file globbing */
51#define EXP_TILDE 0x2 /* do normal tilde expansion */
52#define EXP_VARTILDE 0x4 /* expand tildes in an assignment */
53#define EXP_REDIR 0x8 /* file glob for a redirection (1 match only) */
54#define EXP_CASE 0x10 /* keeps quotes around for CASE pattern */
34 */
35
36struct strlist {
37 struct strlist *next;
38 char *text;
39};
40
41

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

47/*
48 * expandarg() flags
49 */
50#define EXP_FULL 0x1 /* perform word splitting & file globbing */
51#define EXP_TILDE 0x2 /* do normal tilde expansion */
52#define EXP_VARTILDE 0x4 /* expand tildes in an assignment */
53#define EXP_REDIR 0x8 /* file glob for a redirection (1 match only) */
54#define EXP_CASE 0x10 /* keeps quotes around for CASE pattern */
55#define EXP_SPLIT_LIT 0x20 /* IFS split literal text ${v+-a b c} */
56#define EXP_LIT_QUOTED 0x40 /* for EXP_SPLIT_LIT, start off quoted */
55
56
57union node;
58void expandhere(union node *, int);
59void expandarg(union node *, struct arglist *, int);
60void expari(int);
61int patmatch(const char *, const char *, int);
62void rmescapes(char *);
63int casematch(union node *, const char *);
64int wordexpcmd(int, char **);
57
58
59union node;
60void expandhere(union node *, int);
61void expandarg(union node *, struct arglist *, int);
62void expari(int);
63int patmatch(const char *, const char *, int);
64void rmescapes(char *);
65int casematch(union node *, const char *);
66int wordexpcmd(int, char **);