lua: factorize the right way.
[vlc/asuraparaju-public.git] / src / config / vlc_getopt.h
blob751f762319449fd90806f0f3c5f5139c2921c469
1 /*****************************************************************************
2 * Declarations for getopt_long()
3 *****************************************************************************
4 * Copyright (C) 1987-1997 Free Software Foundation, Inc.
5 * Copyright (C) 2005-2010 the VideoLAN team
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this program; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20 *****************************************************************************/
22 #ifndef VLC_GETOPT_H
23 #define VLC_GETOPT_H 1
25 typedef struct vlc_getopt_s
27 /* For communication from `getopt' to the caller.
28 When `getopt' finds an option that takes an argument,
29 the argument value is returned here. */
31 char *arg;
33 /* Index in ARGV of the next element to be scanned.
34 This is used for communication to and from the caller
35 and for communication between successive calls to `getopt'.
37 On entry to `getopt', zero means this is the first call; initialize.
39 When `getopt' returns -1, this is the index of the first of the
40 non-option elements that the caller should itself scan.
42 Otherwise, `optind' communicates from one call to the next
43 how much of ARGV has been scanned so far. */
45 int ind;
47 /* Set to an option character which was unrecognized. */
49 int opt;
51 /* The next char to be scanned in the option-element
52 in which the last option character we returned was found.
53 This allows us to pick up the scan where we left off.
55 If this is zero, or a null string, it means resume the scan
56 by advancing to the next ARGV-element. */
58 char *nextchar;
60 /* Handle permutation of arguments. */
62 /* Describe the part of ARGV that contains non-options that have
63 been skipped. `first_nonopt' is the index in ARGV of the first of them;
64 `last_nonopt' is the index after the last of them. */
66 int first_nonopt;
67 int last_nonopt;
69 } vlc_getopt_t;
71 /* Describe the long-named options requested by the application.
72 The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
73 of `struct option' terminated by an element containing a name which is
74 zero.
76 The field `has_arg' is:
77 false if the option does not take an argument,
78 true if the option requires an argument.
80 If the field `flag' is not NULL, it points to a variable that is set
81 to the value given in the field `val' when the option is found, but
82 left unchanged if the option is not found.
84 To have a long-named option do something other than set an `int' to
85 a compiled-in constant, such as set a value from `optarg', set the
86 option's `flag' field to zero and its `val' field to a nonzero
87 value (the equivalent single-letter option character, if there is
88 one). For long options that have a zero `flag' field, `getopt'
89 returns the contents of the `val' field. */
91 struct vlc_option
93 const char *name;
94 bool has_arg;
95 int *flag;
96 int val;
99 extern int vlc_getopt_long(int argc, char *const *argv, const char *shortopts,
100 const struct vlc_option *longopts, int *longind,
101 vlc_getopt_t *restrict state);
103 #endif /* VLC_GETOPT_H */