blob: 2136fbfcca609f85dd886815a401fd5e20f7eba9 [file] [log] [blame]
Damien Miller4f8e6692001-07-14 13:22:53 +10001/*
2 * Copyright (c) 1987, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
Damien Miller329638e2003-06-03 12:12:50 +100013 * 3. Neither the name of the University nor the names of its contributors
Damien Miller4f8e6692001-07-14 13:22:53 +100014 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
Ben Lindstromdd21fe92002-06-27 18:23:20 +000030#include "includes.h"
Damien Miller4f8e6692001-07-14 13:22:53 +100031#if !defined(HAVE_GETOPT) || !defined(HAVE_GETOPT_OPTRESET)
32
33#if defined(LIBC_SCCS) && !defined(lint)
Damien Miller329638e2003-06-03 12:12:50 +100034static char *rcsid = "$OpenBSD: getopt.c,v 1.5 2003/06/02 20:18:37 millert Exp $";
Damien Miller4f8e6692001-07-14 13:22:53 +100035#endif /* LIBC_SCCS and not lint */
36
37#include <stdio.h>
38#include <stdlib.h>
39#include <string.h>
40
Ben Lindstromee9ac352002-06-22 00:26:59 +000041int BSDopterr = 1, /* if error message should be printed */
42 BSDoptind = 1, /* index into parent argv vector */
43 BSDoptopt, /* character checked for validity */
44 BSDoptreset; /* reset getopt */
45char *BSDoptarg; /* argument associated with option */
Damien Miller4f8e6692001-07-14 13:22:53 +100046
47#define BADCH (int)'?'
48#define BADARG (int)':'
49#define EMSG ""
50
51/*
52 * getopt --
53 * Parse argc/argv argument vector.
54 */
55int
Tim Ricea4f7ae12001-09-17 14:34:33 -070056BSDgetopt(nargc, nargv, ostr)
Damien Miller4f8e6692001-07-14 13:22:53 +100057 int nargc;
58 char * const *nargv;
59 const char *ostr;
60{
61 extern char *__progname;
62 static char *place = EMSG; /* option letter processing */
63 char *oli; /* option letter list index */
64
Damien Miller13dd03a2003-01-08 11:16:48 +110065 if (ostr == NULL)
66 return (-1);
67
Ben Lindstromee9ac352002-06-22 00:26:59 +000068 if (BSDoptreset || !*place) { /* update scanning pointer */
69 BSDoptreset = 0;
70 if (BSDoptind >= nargc || *(place = nargv[BSDoptind]) != '-') {
Damien Miller4f8e6692001-07-14 13:22:53 +100071 place = EMSG;
72 return (-1);
73 }
74 if (place[1] && *++place == '-') { /* found "--" */
Ben Lindstromee9ac352002-06-22 00:26:59 +000075 ++BSDoptind;
Damien Miller4f8e6692001-07-14 13:22:53 +100076 place = EMSG;
77 return (-1);
78 }
79 } /* option letter okay? */
Ben Lindstromee9ac352002-06-22 00:26:59 +000080 if ((BSDoptopt = (int)*place++) == (int)':' ||
81 !(oli = strchr(ostr, BSDoptopt))) {
Damien Miller4f8e6692001-07-14 13:22:53 +100082 /*
83 * if the user didn't specify '-' as an option,
84 * assume it means -1.
85 */
Ben Lindstromee9ac352002-06-22 00:26:59 +000086 if (BSDoptopt == (int)'-')
Damien Miller4f8e6692001-07-14 13:22:53 +100087 return (-1);
88 if (!*place)
Ben Lindstromee9ac352002-06-22 00:26:59 +000089 ++BSDoptind;
90 if (BSDopterr && *ostr != ':')
Damien Miller4f8e6692001-07-14 13:22:53 +100091 (void)fprintf(stderr,
Ben Lindstromee9ac352002-06-22 00:26:59 +000092 "%s: illegal option -- %c\n", __progname, BSDoptopt);
Damien Miller4f8e6692001-07-14 13:22:53 +100093 return (BADCH);
94 }
95 if (*++oli != ':') { /* don't need argument */
Ben Lindstromee9ac352002-06-22 00:26:59 +000096 BSDoptarg = NULL;
Damien Miller4f8e6692001-07-14 13:22:53 +100097 if (!*place)
Ben Lindstromee9ac352002-06-22 00:26:59 +000098 ++BSDoptind;
Damien Miller4f8e6692001-07-14 13:22:53 +100099 }
100 else { /* need an argument */
101 if (*place) /* no white space */
Ben Lindstromee9ac352002-06-22 00:26:59 +0000102 BSDoptarg = place;
103 else if (nargc <= ++BSDoptind) { /* no arg */
Damien Miller4f8e6692001-07-14 13:22:53 +1000104 place = EMSG;
105 if (*ostr == ':')
106 return (BADARG);
Ben Lindstromee9ac352002-06-22 00:26:59 +0000107 if (BSDopterr)
Damien Miller4f8e6692001-07-14 13:22:53 +1000108 (void)fprintf(stderr,
109 "%s: option requires an argument -- %c\n",
Ben Lindstromee9ac352002-06-22 00:26:59 +0000110 __progname, BSDoptopt);
Damien Miller4f8e6692001-07-14 13:22:53 +1000111 return (BADCH);
112 }
113 else /* white space */
Ben Lindstromee9ac352002-06-22 00:26:59 +0000114 BSDoptarg = nargv[BSDoptind];
Damien Miller4f8e6692001-07-14 13:22:53 +1000115 place = EMSG;
Ben Lindstromee9ac352002-06-22 00:26:59 +0000116 ++BSDoptind;
Damien Miller4f8e6692001-07-14 13:22:53 +1000117 }
Ben Lindstromee9ac352002-06-22 00:26:59 +0000118 return (BSDoptopt); /* dump back option letter */
Damien Miller4f8e6692001-07-14 13:22:53 +1000119}
120
121#endif /* !defined(HAVE_GETOPT) || !defined(HAVE_OPTRESET) */