WIP: fsctl_pipe_wait
[metze/wireshark/wip.git] / wsutil / wsgetopt_int.h
1 /* $Id$
2    Copied from glibc-2.15
3
4    Internal declarations for getopt.
5    Copyright (C) 1989-1994,1996-1999,2001,2003,2004,2009
6    Free Software Foundation, Inc.
7    This file is part of the GNU C Library.
8
9    The GNU C Library is free software; you can redistribute it and/or
10    modify it under the terms of the GNU Lesser General Public
11    License as published by the Free Software Foundation; either
12    version 2.1 of the License, or (at your option) any later version.
13
14    The GNU C Library is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17    Lesser General Public License for more details.
18
19    You should have received a copy of the GNU Lesser General Public
20    License along with the GNU C Library; if not, write to the Free
21    Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22    02110-1301 USA. */
23
24 #ifndef _GETOPT_INT_H
25 #define _GETOPT_INT_H   1
26
27 extern int _getopt_internal (int ___argc, char *const *___argv,
28                              const char *__shortopts,
29                              const struct option *__longopts, int *__longind,
30                              int __long_only, int posixly_correct);
31
32 \f
33 /* Reentrant versions which can handle parsing multiple argument
34    vectors at the same time.  */
35
36 /* Data type for reentrant functions.  */
37 struct _getopt_data
38 {
39   /* These have exactly the same meaning as the corresponding global
40      variables, except that they are used for the reentrant
41      versions of getopt.  */
42   int optind;
43   int opterr;
44   int optopt;
45   char *optarg;
46
47   /* Internal members.  */
48
49   /* True if the internal members have been initialized.  */
50   int __initialized;
51
52   /* The next char to be scanned in the option-element
53      in which the last option character we returned was found.
54      This allows us to pick up the scan where we left off.
55
56      If this is zero, or a null string, it means resume the scan
57      by advancing to the next ARGV-element.  */
58   char *__nextchar;
59
60   /* Describe how to deal with options that follow non-option ARGV-elements.
61
62      If the caller did not specify anything,
63      the default is REQUIRE_ORDER if the environment variable
64      POSIXLY_CORRECT is defined, PERMUTE otherwise.
65
66      REQUIRE_ORDER means don't recognize them as options;
67      stop option processing when the first non-option is seen.
68      This is what Unix does.
69      This mode of operation is selected by either setting the environment
70      variable POSIXLY_CORRECT, or using `+' as the first character
71      of the list of option characters.
72
73      PERMUTE is the default.  We permute the contents of ARGV as we
74      scan, so that eventually all the non-options are at the end.
75      This allows options to be given in any order, even with programs
76      that were not written to expect this.
77
78      RETURN_IN_ORDER is an option available to programs that were
79      written to expect options and other ARGV-elements in any order
80      and that care about the ordering of the two.  We describe each
81      non-option ARGV-element as if it were the argument of an option
82      with character code 1.  Using `-' as the first character of the
83      list of option characters selects this mode of operation.
84
85      The special argument `--' forces an end of option-scanning regardless
86      of the value of `ordering'.  In the case of RETURN_IN_ORDER, only
87      `--' can cause `getopt' to return -1 with `optind' != ARGC.  */
88
89   enum
90     {
91       REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
92     } __ordering;
93
94   /* If the POSIXLY_CORRECT environment variable is set.  */
95   int __posixly_correct;
96
97
98   /* Handle permutation of arguments.  */
99
100   /* Describe the part of ARGV that contains non-options that have
101      been skipped.  `first_nonopt' is the index in ARGV of the first
102      of them; `last_nonopt' is the index after the last of them.  */
103
104   int __first_nonopt;
105   int __last_nonopt;
106
107 #if defined _LIBC && defined USE_NONOPTION_FLAGS
108   int __nonoption_flags_max_len;
109   int __nonoption_flags_len;
110 # endif
111 };
112
113 /* The initializer is necessary to set OPTIND and OPTERR to their
114    default values and to clear the initialization flag.  */
115 #define _GETOPT_DATA_INITIALIZER        { 1, 1 }
116
117 extern int _getopt_internal_r (int ___argc, char *const *___argv,
118                                const char *__shortopts,
119                                const struct option *__longopts, int *__longind,
120                                int __long_only, struct _getopt_data *__data,
121                                int posixly_correct);
122
123 extern int _getopt_long_r (int ___argc, char *const *___argv,
124                            const char *__shortopts,
125                            const struct option *__longopts, int *__longind,
126                            struct _getopt_data *__data);
127
128 extern int _getopt_long_only_r (int ___argc, char *const *___argv,
129                                 const char *__shortopts,
130                                 const struct option *__longopts,
131                                 int *__longind,
132                                 struct _getopt_data *__data);
133
134 #endif /* getopt_int.h */