Deleted Added
full compact
options.h (127958) options.h (200956)
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 * @(#)options.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 * @(#)options.h 8.2 (Berkeley) 5/4/95
33 * $FreeBSD: head/bin/sh/options.h 127958 2004-04-06 20:06:54Z markm $
33 * $FreeBSD: head/bin/sh/options.h 200956 2009-12-24 18:41:14Z jilles $
34 */
35
36struct shparam {
37 int nparam; /* # of positional parameters (without $0) */
38 unsigned char malloc; /* if parameter list dynamically allocated */
39 unsigned char reset; /* if getopts has been reset */
40 char **p; /* parameter list */
41 char **optnext; /* next parameter to be processed by getopts */

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

106
107void procargs(int, char **);
108void optschanged(void);
109void setparam(char **);
110void freeparam(struct shparam *);
111int shiftcmd(int, char **);
112int setcmd(int, char **);
113int getoptscmd(int, char **);
34 */
35
36struct shparam {
37 int nparam; /* # of positional parameters (without $0) */
38 unsigned char malloc; /* if parameter list dynamically allocated */
39 unsigned char reset; /* if getopts has been reset */
40 char **p; /* parameter list */
41 char **optnext; /* next parameter to be processed by getopts */

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

106
107void procargs(int, char **);
108void optschanged(void);
109void setparam(char **);
110void freeparam(struct shparam *);
111int shiftcmd(int, char **);
112int setcmd(int, char **);
113int getoptscmd(int, char **);
114int nextopt(char *);
114int nextopt(const char *);
115void getoptsreset(const char *);
115void getoptsreset(const char *);