]> granicus.if.org Git - postgresql/blob - src/port/getopt.c
Add CVS tag lines to files that were lacking them.
[postgresql] / src / port / getopt.c
1 /* $PostgreSQL: pgsql/src/port/getopt.c,v 1.10 2006/03/11 04:38:40 momjian Exp $ */
2
3 /* This is used by psql under Win32 */
4
5 /*
6  * Copyright (c) 1987, 1993, 1994
7  *      The Regents of the University of California.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *        notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *        notice, this list of conditions and the following disclaimer in the
16  *        documentation and/or other materials provided with the distribution.
17  * 3. All advertising materials mentioning features or use of this software
18  *        must display the following acknowledgement:
19  *      This product includes software developed by the University of
20  *      California, Berkeley and its contributors.
21  * 4. Neither the name of the University nor the names of its contributors
22  *        may be used to endorse or promote products derived from this software
23  *        without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.      IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  */
36
37 #include "c.h"
38
39 #if defined(LIBC_SCCS) && !defined(lint)
40 static char sccsid[] = "@(#)getopt.c    8.3 (Berkeley) 4/27/95";
41 #endif   /* LIBC_SCCS and not lint */
42
43
44 int                     opterr = 1,                     /* if error message should be printed */
45                         optind = 1,                     /* index into parent argv vector */
46                         optopt,                         /* character checked for validity */
47                         optreset;                       /* reset getopt */
48 char       *optarg;                             /* argument associated with option */
49
50 #define BADCH   (int)'?'
51 #define BADARG  (int)':'
52 #define EMSG    ""
53
54 /*
55  * getopt
56  *      Parse argc/argv argument vector.
57  */
58 int
59 getopt(nargc, nargv, ostr)
60 int                     nargc;
61 char       *const * nargv;
62 const char *ostr;
63 {
64         static char *place = EMSG;      /* option letter processing */
65         char       *oli;                        /* option letter list index */
66
67         if (optreset || !*place)
68         {                                                       /* update scanning pointer */
69                 optreset = 0;
70                 if (optind >= nargc || *(place = nargv[optind]) != '-')
71                 {
72                         place = EMSG;
73                         return -1;
74                 }
75                 if (place[1] && *++place == '-' && place[1] == '\0')
76                 {                                               /* found "--" */
77                         ++optind;
78                         place = EMSG;
79                         return -1;
80                 }
81         }                                                       /* option letter okay? */
82         if ((optopt = (int) *place++) == (int) ':' ||
83                 !(oli = strchr(ostr, optopt)))
84         {
85                 /*
86                  * if the user didn't specify '-' as an option, assume it means -1.
87                  */
88                 if (optopt == (int) '-')
89                         return -1;
90                 if (!*place)
91                         ++optind;
92                 if (opterr && *ostr != ':')
93                         (void) fprintf(stderr,
94                                                    "illegal option -- %c\n", optopt);
95                 return BADCH;
96         }
97         if (*++oli != ':')
98         {                                                       /* don't need argument */
99                 optarg = NULL;
100                 if (!*place)
101                         ++optind;
102         }
103         else
104         {                                                       /* need an argument */
105                 if (*place)                             /* no white space */
106                         optarg = place;
107                 else if (nargc <= ++optind)
108                 {                                               /* no arg */
109                         place = EMSG;
110                         if (*ostr == ':')
111                                 return BADARG;
112                         if (opterr)
113                                 (void) fprintf(stderr,
114                                                            "option requires an argument -- %c\n",
115                                                            optopt);
116                         return BADCH;
117                 }
118                 else
119                         /* white space */
120                         optarg = nargv[optind];
121                 place = EMSG;
122                 ++optind;
123         }
124         return optopt;                          /* dump back option letter */
125 }