blob: d9778f1511924d46db8267a983b9c199c995672b [file] [log] [blame]
Benny Prijonoe7224612005-11-13 19:40:44 +00001/* $Id$
2 *
3 */
4/*
5 * PJSIP - SIP Stack
6 * (C)2003-2005 Benny Prijono <bennylp@bulukucing.org>
7 *
8 * Author:
9 * Benny Prijono <bennylp@bulukucing.org>
10 *
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 *
25 */
26/* Declarations for getopt.
27 Copyright (C) 1989,90,91,92,93,94,96,97,98 Free Software Foundation, Inc.
28 This file is part of the GNU C Library.
29
30 The GNU C Library is free software; you can redistribute it and/or
31 modify it under the terms of the GNU Library General Public License as
32 published by the Free Software Foundation; either version 2 of the
33 License, or (at your option) any later version.
34
35 The GNU C Library is distributed in the hope that it will be useful,
36 but WITHOUT ANY WARRANTY; without even the implied warranty of
37 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
38 Library General Public License for more details.
39
40 You should have received a copy of the GNU Library General Public
41 License along with the GNU C Library; see the file COPYING.LIB. If not,
42 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
43 Boston, MA 02111-1307, USA. */
44
45#ifndef _GETOPT_H
46#define _GETOPT_H 1
47
48#ifdef __cplusplus
49extern "C" {
50#endif
51
52/* For communication from `getopt' to the caller.
53 When `getopt' finds an option that takes an argument,
54 the argument value is returned here.
55 Also, when `ordering' is RETURN_IN_ORDER,
56 each non-option ARGV-element is returned here. */
57
58extern char *optarg;
59
60/* Index in ARGV of the next element to be scanned.
61 This is used for communication to and from the caller
62 and for communication between successive calls to `getopt'.
63
64 On entry to `getopt', zero means this is the first call; initialize.
65
66 When `getopt' returns -1, this is the index of the first of the
67 non-option elements that the caller should itself scan.
68
69 Otherwise, `optind' communicates from one call to the next
70 how much of ARGV has been scanned so far. */
71
72extern int optind;
73
74/* Callers store zero here to inhibit the error message `getopt' prints
75 for unrecognized options. */
76
77extern int opterr;
78
79/* Set to an option character which was unrecognized. */
80
81extern int optopt;
82
83/* Describe the long-named options requested by the application.
84 The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
85 of `struct option' terminated by an element containing a name which is
86 zero.
87
88 The field `has_arg' is:
89 no_argument (or 0) if the option does not take an argument,
90 required_argument (or 1) if the option requires an argument,
91 optional_argument (or 2) if the option takes an optional argument.
92
93 If the field `flag' is not NULL, it points to a variable that is set
94 to the value given in the field `val' when the option is found, but
95 left unchanged if the option is not found.
96
97 To have a long-named option do something other than set an `int' to
98 a compiled-in constant, such as set a value from `optarg', set the
99 option's `flag' field to zero and its `val' field to a nonzero
100 value (the equivalent single-letter option character, if there is
101 one). For long options that have a zero `flag' field, `getopt'
102 returns the contents of the `val' field. */
103
104struct option
105{
106 const char *name;
107 /* has_arg can't be an enum because some compilers complain about
108 type mismatches in all the code that assumes it is an int. */
109 int has_arg;
110 int *flag;
111 int val;
112};
113
114/* Names for the values of the `has_arg' field of `struct option'. */
115
116# define no_argument 0
117# define required_argument 1
118# define optional_argument 2
119
120
121/* Get definitions and prototypes for functions to process the
122 arguments in ARGV (ARGC of them, minus the program name) for
123 options given in OPTS.
124
125 Return the option character from OPTS just read. Return -1 when
126 there are no more options. For unrecognized options, or options
127 missing arguments, `optopt' is set to the option letter, and '?' is
128 returned.
129
130 The OPTS string is a list of characters which are recognized option
131 letters, optionally followed by colons, specifying that that letter
132 takes an argument, to be placed in `optarg'.
133
134 If a letter in OPTS is followed by two colons, its argument is
135 optional. This behavior is specific to the GNU `getopt'.
136
137 The argument `--' causes premature termination of argument
138 scanning, explicitly telling `getopt' that there are no more
139 options.
140
141 If OPTS begins with `--', then non-option arguments are treated as
142 arguments to the option '\0'. This behavior is specific to the GNU
143 `getopt'. */
144
145int getopt (int argc, char *const *argv, const char *shortopts);
146
147int getopt_long (int argc, char *const *argv, const char *options,
148 const struct option *longopts, int *longind);
149int getopt_long_only (int argc, char *const *argv,
150 const char *shortopts,
151 const struct option *longopts, int *longind);
152
153/* Internal only. Users should not call this directly. */
154int _getopt_internal (int argc, char *const *argv,
155 const char *shortopts,
156 const struct option *longopts, int *longind,
157 int long_only);
158
159#ifdef __cplusplus
160}
161#endif
162
163#endif /* getopt.h */
164