getopt-posix: No longer guarantee that option processing is resettable.
[gnulib.git] / doc / posix-functions / getopt.texi
1 @node getopt
2 @section @code{getopt}
3 @findex getopt
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getopt.html}
6
7 Gnulib module: getopt-posix or getopt-gnu
8
9 The module @code{getopt-gnu} has support for ``long options'' and for
10 ``options that take optional arguments''.  Compared to the API defined by POSIX,
11 it adds a header file @code{<getopt.h>} and a function @code{getopt_long}.
12
13 Portability problems fixed by either Gnulib module @code{getopt-posix} or @code{getopt-gnu}:
14 @itemize
15 @item
16 This function is missing on some platforms:
17 MSVC 9.
18 @item
19 The value of @code{optind} after a missing required argument is wrong
20 on some platforms:
21 Mac OS X 10.5, AIX 7.1, mingw.
22 @end itemize
23
24 Portability problems fixed by Gnulib module @code{getopt-gnu}:
25 @itemize
26 @item
27 The function @code{getopt} does not support the @samp{+} flag in the options
28 string on some platforms:
29 Mac OS X 10.5, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 11 2010-11.
30 @item
31 The function @code{getopt} does not obey the combination of @samp{+}
32 and @samp{:} flags in the options string on some platforms:
33 glibc 2.11.
34 @item
35 The function @code{getopt} does not obey the @samp{-} flag in the options
36 string when @env{POSIXLY_CORRECT} is set on some platforms:
37 Cygwin 1.7.0.
38 @item
39 The function @code{getopt} does not support options with optional arguments
40 on some platforms:
41 Mac OS X 10.5, OpenBSD 4.0, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1,
42 Solaris 11 2010-11, Cygwin 1.5.x.
43 @item
44 The function @code{getopt_long} is missing on some platforms:
45 AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, MSVC 9, Interix 3.5.
46 @item
47 The function @code{getopt_long} does not support abbreviated long options
48 where all disambiguations are equivalent on some platforms:
49 OpenBSD 5.0.
50 @item
51 The function @code{getopt_long_only} is missing on some platforms:
52 Mac OS X 10.3, FreeBSD 5.2.1, NetBSD 5.0, AIX 5.1, HP-UX 11, IRIX 6.5,
53 OSF/1 5.1, Solaris 9, mingw, MSVC 9, Interix 3.5.
54 @item
55 This function crashes if the option string includes @code{W;} on some
56 platforms:
57 glibc 2.14.
58 @end itemize
59
60 Portability problems not fixed by Gnulib:
61 @itemize
62 @item
63 The default behavior of the glibc implementation of @code{getopt} allows
64 mixing option and non-option arguments on the command line in any order.
65 Other implementations, such as the one in Cygwin, enforce strict POSIX
66 compliance: they require that the option arguments precede the non-option
67 arguments.  This is something to watch out in your program's
68 testsuite.
69 @item
70 The glibc implementation allows a complete reset of the environment,
71 including re-checking for @env{POSIXLY_CORRECT}, by setting
72 @code{optind} to 0.  Several BSD implementations provide @code{optreset},
73 causing a reset by setting it non-zero, although it does not
74 necessarily re-read @env{POSIXLY_CORRECT}.  Solaris @code{getopt} does
75 not support either reset method, but does not maintain state that
76 needs the extra level of reset.
77 @item
78 On some platforms, this function does not set the stream error
79 indicator on attempts to write to a read-only stream:
80 glibc 2.13, Cygwin 1.7.9.
81 @end itemize