headers: include-what-you-use fixes
[debian/dhcpd-pools.git] / src / getopt1.c
1 /* getopt_long and getopt_long_only entry points for GNU getopt.
2    Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98
3      Free Software Foundation, Inc.
4    This file is part of the GNU C Library.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19 \f
20 #include <features.h>
21
22 #if !defined __STDC__ || !__STDC__
23 /* This is a separate conditional since some stdc systems
24    reject `defined (const)'.  */
25 #ifndef const
26 #define const
27 #endif
28 #endif
29
30 /* Comment out all this code if we are using the GNU C Library, and are not
31    actually compiling the library itself.  This code is part of the GNU C
32    Library, but also included in many other GNU distributions.  Compiling
33    and linking in this code is a waste when using the GNU C library
34    (especially if it is a shared library).  Rather than having every GNU
35    program understand `configure --with-gnu-libc' and omit the object files,
36    it is simpler to just do this in the source for each such file.  */
37
38 #define GETOPT_INTERFACE_VERSION 2
39 #if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2
40 #include <gnu-versions.h>
41 #if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
42 #define ELIDE_CODE
43 #endif
44 #endif
45
46 #ifndef ELIDE_CODE
47
48
49 /* This needs to come after some library #include
50    to get __GNU_LIBRARY__ defined.  */
51 #ifdef __GNU_LIBRARY__
52 #include <stdlib.h>
53 #endif
54
55 #ifndef NULL
56 #define NULL 0
57 #endif
58
59 int getopt_long(argc, argv, options, long_options, opt_index)
60 int argc;
61 char *const *argv;
62 const char *options;
63 const struct option *long_options;
64 int *opt_index;
65 {
66         return _getopt_internal(argc, argv, options, long_options,
67                                 opt_index, 0);
68 }
69
70 /* Like getopt_long, but '-' as well as '--' can indicate a long option.
71    If an option that starts with '-' (not '--') doesn't match a long option,
72    but does match a short option, it is parsed as a short option
73    instead.  */
74
75 int getopt_long_only(argc, argv, options, long_options, opt_index)
76 int argc;
77 char *const *argv;
78 const char *options;
79 const struct option *long_options;
80 int *opt_index;
81 {
82         return _getopt_internal(argc, argv, options, long_options,
83                                 opt_index, 1);
84 }
85
86
87 #endif                          /* Not ELIDE_CODE.  */
88 \f
89 #ifdef TEST
90
91 #include <stdio.h>
92
93 int main(argc, argv)
94 int argc;
95 char **argv;
96 {
97         int c;
98         int digit_optind = 0;
99
100         while (1) {
101                 int this_option_optind = optind ? optind : 1;
102                 int option_index = 0;
103                 static struct option long_options[] = {
104                         {"add", 1, 0, 0},
105                         {"append", 0, 0, 0},
106                         {"delete", 1, 0, 0},
107                         {"verbose", 0, 0, 0},
108                         {"create", 0, 0, 0},
109                         {"file", 1, 0, 0},
110                         {0, 0, 0, 0}
111                 };
112
113                 c = getopt_long(argc, argv, "abc:d:0123456789",
114                                 long_options, &option_index);
115                 if (c == -1)
116                         break;
117
118                 switch (c) {
119                 case 0:
120                         printf("option %s",
121                                long_options[option_index].name);
122                         if (optarg)
123                                 printf(" with arg %s", optarg);
124                         printf("\n");
125                         break;
126
127                 case '0':
128                 case '1':
129                 case '2':
130                 case '3':
131                 case '4':
132                 case '5':
133                 case '6':
134                 case '7':
135                 case '8':
136                 case '9':
137                         if (digit_optind != 0
138                             && digit_optind != this_option_optind)
139                                 printf
140                                     ("digits occur in two different argv-elements.\n");
141                         digit_optind = this_option_optind;
142                         printf("option %c\n", c);
143                         break;
144
145                 case 'a':
146                         printf("option a\n");
147                         break;
148
149                 case 'b':
150                         printf("option b\n");
151                         break;
152
153                 case 'c':
154                         printf("option c with value `%s'\n", optarg);
155                         break;
156
157                 case 'd':
158                         printf("option d with value `%s'\n", optarg);
159                         break;
160
161                 case '?':
162                         break;
163
164                 default:
165                         printf
166                             ("?? getopt returned character code 0%o ??\n",
167                              c);
168                 }
169         }
170
171         if (optind < argc) {
172                 printf("non-option ARGV-elements: ");
173                 while (optind < argc)
174                         printf("%s ", argv[optind++]);
175                 printf("\n");
176         }
177
178         exit(0);
179 }
180
181 #endif                          /* TEST */