1 .\" $NetBSD: getopt_long.3,v 1.14 2003/08/07 16:43:40 agc Exp $
2 .\" $DragonFly: src/lib/libc/stdlib/getopt_long.3,v 1.6 2007/05/12 21:22:10 swildner Exp $
4 .\" Copyright (c) 1988, 1991, 1993
5 .\" The Regents of the University of California. All rights reserved.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
15 .\" 3. Neither the name of the University nor the names of its contributors
16 .\" may be used to endorse or promote products derived from this software
17 .\" without specific prior written permission.
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 .\" @(#)getopt.3 8.5 (Berkeley) 4/27/95
38 .Nd get long options from command line argument list
44 .Fn getopt_long "int argc" "char * const *argv" "const char *optstring" "struct option *long_options" "int *index"
45 .Fn getopt_long_only "int argc" "char * const *argv" "const char *optstring" "struct option *long_options" "int *index"
49 function is similar to
51 but it accepts options in two forms: words and characters.
54 function provides a superset of the functionality of
57 can be used in two ways.
58 In the first way, every long option understood by the program has a
59 corresponding short option, and the option structure is only used to
60 translate from long options to short options.
61 When used in this fashion,
63 behaves identically to
65 This is a good way to add long option processing to an existing program
66 with the minimum of rewriting.
68 In the second mechanism, a long option sets a flag in the
70 structure passed, or will store a pointer to the command line argument
73 structure passed to it for options that take arguments.
74 Additionally, the long option's argument may be specified as a single
75 argument with an equal sign, e.g.
77 myprogram --myoption=somevalue
80 When a long option is processed the call to
83 For this reason, long option processing without
84 shortcuts is not backwards compatible with
87 It is possible to combine these methods, providing for long options
88 processing with short option equivalents for some options.
89 Less frequently used options would be processed as long options only.
93 call requires a structure to be initialized describing the long options.
106 field should contain the option name without the leading double dash.
110 field should be one of:
111 .Bl -tag -width "optional_argument"
113 no argument to the option is expect.
114 .It Li required_argument
115 an argument to the option is required.
116 .It Li optional_argument
117 an argument to the option may be presented.
124 then the integer pointed to by it will be set to the value in the
133 field will be returned.
140 to the corresponding short option will make this function act just
148 the integer it points to will be set to the index of the long option
153 The last element of the
155 array has to be filled with zeroes (see
161 function behaves identically to
163 with the exception that long options may start with
167 If an option starting with
169 does not match a long option but does match a single-character option,
170 the single-character option is returned.
173 function is deprecated.
174 New programs should use
176 .Sh IMPLEMENTATION DIFFERENCES
177 This section describes differences to the GNU implementation
178 found in glibc-2.1.3:
179 .Bl -tag -width "xxx"
181 handling of - as first char of option string in presence of
182 environment variable POSIXLY_CORRECT:
183 .Bl -tag -width "NetBSD"
185 ignores POSIXLY_CORRECT and returns non-options as
186 arguments to option '\e1'.
188 honors POSIXLY_CORRECT and stops at the first non-option.
191 handling of :: in options string in presence of POSIXLY_CORRECT:
192 .Bl -tag -width "NetBSD"
196 ignore POSIXLY_CORRECT here and take :: to
197 mean the preceding option takes an optional argument.
200 return value in case of missing argument if first character
201 (after + or -) in option string is not ':':
202 .Bl -tag -width "NetBSD"
211 handling of --a in getopt:
212 .Bl -tag -width "NetBSD"
214 parses this as option '-', option 'a'.
216 parses this as '--', and returns \-1 (ignoring the a).
217 (Because the original getopt does.)
220 setting of optopt for long options with flag !=
222 .Bl -tag -width "NetBSD"
226 sets optopt to 0 (since val would never be returned).
229 handling of -W with W; in option string in getopt (not getopt_long):
230 .Bl -tag -width "NetBSD"
234 returns \-1, with optind pointing past the argument of -W
235 (as if `-W arg' were `--arg', and thus '--' had been found).
236 .\" How should we treat W; in the option string when called via
237 .\" getopt? Ignore the ';' or treat it as a ':'? Issue a warning?
240 setting of optarg for long options without an argument that are
241 invoked via -W (W; in option string):
242 .Bl -tag -width "NetBSD"
244 sets optarg to the option name (the argument of -W).
248 (the argument of the long option).
251 handling of -W with an argument that is not (a prefix to) a known
252 long option (W; in option string):
253 .Bl -tag -width "NetBSD"
255 returns -W with optarg set to the unknown option.
257 treats this as an error (unknown option) and returns '?' with
258 optopt set to 0 and optarg set to
260 (as GNU's man page documents).
263 The error messages are different.
266 does not permute the argument vector at the same points in
267 the calling sequence as GNU does.
268 The aspects normally used by the caller
269 (ordering after \-1 is returned, value of optind relative
270 to current positions) are the same, though.
271 (We do fewer variable swaps.)
274 .Bd -literal -compact
280 /* options descriptor */
281 static struct option longopts[] = {
282 { "buffy", no_argument, 0, 'b' },
283 { "fluoride", required_argument, 0, 'f' },
284 { "daggerset", no_argument, \*[Am]daggerset, 1 },
289 while ((ch = getopt_long(argc, argv, "bf:", longopts, NULL)) != -1)
295 if ((fd = open(optarg, O_RDONLY, 0)) \*[Lt] 0) {
296 (void)fprintf(stderr,
297 "myname: %s: %s\en", optarg, strerror(errno));
303 fprintf(stderr,"Buffy will use her dagger to "
304 "apply fluoride to dracula's teeth\en");
319 function first appeared in GNU libiberty.
322 implementation appeared in 1.5.