2 * Original file name getopt.c Initial import into the c-ares source tree
3 * on 2007-04-11. Lifted from version 5.2 of the 'Open Mash' project with
4 * the modified BSD license, BSD license without the advertising clause.
11 * Standard UNIX getopt function. Code is from BSD.
13 * Copyright (c) 1987-2001 The Regents of the University of California.
14 * All rights reserved.
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions are met:
19 * A. Redistributions of source code must retain the above copyright notice,
20 * this list of conditions and the following disclaimer.
21 * B. Redistributions in binary form must reproduce the above copyright notice,
22 * this list of conditions and the following disclaimer in the documentation
23 * and/or other materials provided with the distribution.
24 * C. Neither the names of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from this
26 * software without specific prior written permission.
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
29 * IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
30 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
31 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
32 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38 * POSSIBILITY OF SUCH DAMAGE.
42 * static char sccsid[] = "@(#)getopt.c 8.2 (Berkeley) 4/2/94";
49 #include "ares_getopt.h"
51 int opterr = 1, /* if error message should be printed */
52 optind = 1; /* index into parent argv vector */
53 int optopt = 0; /* character checked for validity */
54 static int optreset; /* reset getopt */
55 char *optarg; /* argument associated with option */
57 #define BADCH (int)'?'
58 #define BADARG (int)':'
59 #define EMSG (char *)""
63 * Parse argc/argv argument vector.
66 ares_getopt(int nargc, char * const nargv[], const char *ostr)
68 static char *place = EMSG; /* option letter processing */
69 char *oli; /* option letter list index */
71 if (optreset || !*place) { /* update scanning pointer */
73 if (optind >= nargc || *(place = nargv[optind]) != '-') {
77 if (place[1] && *++place == '-') { /* found "--" */
82 } /* option letter okay? */
83 if ((optopt = (int)*place++) == (int)':' ||
84 (oli = strchr(ostr, optopt)) == NULL) {
86 * if the user didn't specify '-' as an option,
87 * assume it means EOF.
89 if (optopt == (int)'-')
93 if (opterr && *ostr != ':')
95 "%s: illegal option -- %c\n", __FILE__, optopt);
98 if (*++oli != ':') { /* don't need argument */
103 else { /* need an argument */
104 if (*place) /* no white space */
106 else if (nargc <= ++optind) { /* no arg */
111 (void)fprintf(stderr,
112 "%s: option requires an argument -- %c\n",
116 else /* white space */
117 optarg = nargv[optind];
121 return (optopt); /* dump back option letter */