source: trunk/src/emx/include/getopt.h@ 2200

Last change on this file since 2200 was 2144, checked in by bird, 20 years ago

o Ported GLIBC argp and getopt (argp requires the GLIBC one).

This means no optreset anylonger.

o Some corrections / hacks in the weak_alias departement.

  • Property cvs2svn:cvs-rev set to 1.8
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 6.0 KB
Line 
1/* Declarations for getopt.
2 Copyright (C) 1989-1994,1996-1999,2001,2003,2004
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
20
21/** @file
22 * GLIBC 2.3.4
23 */
24
25#ifndef _GETOPT_H
26
27#ifndef __need_getopt
28# define _GETOPT_H 1
29#endif
30
31/* If __GNU_LIBRARY__ is not already defined, either we are being used
32 standalone, or this is the first header included in the source file.
33 If we are being used with glibc, we need to include <features.h>, but
34 that does not exist if we are standalone. So: if __GNU_LIBRARY__ is
35 not defined, include <ctype.h>, which will pull in <features.h> for us
36 if it's from glibc. (Why ctype.h? It's guaranteed to exist and it
37 doesn't flood the namespace with stuff the way some other headers do.) */
38#if !defined __GNU_LIBRARY__
39# include <ctype.h>
40#endif
41
42#ifndef __THROW
43# ifndef __GNUC_PREREQ
44# define __GNUC_PREREQ(maj, min) (0)
45# endif
46# if defined __cplusplus && __GNUC_PREREQ (2,8)
47# define __THROW throw ()
48# else
49# define __THROW
50# endif
51#endif
52
53#ifdef __cplusplus
54extern "C" {
55#endif
56
57/* For communication from `getopt' to the caller.
58 When `getopt' finds an option that takes an argument,
59 the argument value is returned here.
60 Also, when `ordering' is RETURN_IN_ORDER,
61 each non-option ARGV-element is returned here. */
62
63extern char *optarg;
64
65/* Index in ARGV of the next element to be scanned.
66 This is used for communication to and from the caller
67 and for communication between successive calls to `getopt'.
68
69 On entry to `getopt', zero means this is the first call; initialize.
70
71 When `getopt' returns -1, this is the index of the first of the
72 non-option elements that the caller should itself scan.
73
74 Otherwise, `optind' communicates from one call to the next
75 how much of ARGV has been scanned so far. */
76
77extern int optind;
78
79/* Callers store zero here to inhibit the error message `getopt' prints
80 for unrecognized options. */
81
82extern int opterr;
83
84/* Set to an option character which was unrecognized. */
85
86extern int optopt;
87
88#ifndef __need_getopt
89/* Describe the long-named options requested by the application.
90 The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
91 of `struct option' terminated by an element containing a name which is
92 zero.
93
94 The field `has_arg' is:
95 no_argument (or 0) if the option does not take an argument,
96 required_argument (or 1) if the option requires an argument,
97 optional_argument (or 2) if the option takes an optional argument.
98
99 If the field `flag' is not NULL, it points to a variable that is set
100 to the value given in the field `val' when the option is found, but
101 left unchanged if the option is not found.
102
103 To have a long-named option do something other than set an `int' to
104 a compiled-in constant, such as set a value from `optarg', set the
105 option's `flag' field to zero and its `val' field to a nonzero
106 value (the equivalent single-letter option character, if there is
107 one). For long options that have a zero `flag' field, `getopt'
108 returns the contents of the `val' field. */
109
110struct option
111{
112 const char *name;
113 /* has_arg can't be an enum because some compilers complain about
114 type mismatches in all the code that assumes it is an int. */
115 int has_arg;
116 int *flag;
117 int val;
118};
119
120/* Names for the values of the `has_arg' field of `struct option'. */
121
122# define no_argument 0
123# define required_argument 1
124# define optional_argument 2
125#endif /* need getopt */
126
127
128/* Get definitions and prototypes for functions to process the
129 arguments in ARGV (ARGC of them, minus the program name) for
130 options given in OPTS.
131
132 Return the option character from OPTS just read. Return -1 when
133 there are no more options. For unrecognized options, or options
134 missing arguments, `optopt' is set to the option letter, and '?' is
135 returned.
136
137 The OPTS string is a list of characters which are recognized option
138 letters, optionally followed by colons, specifying that that letter
139 takes an argument, to be placed in `optarg'.
140
141 If a letter in OPTS is followed by two colons, its argument is
142 optional. This behavior is specific to the GNU `getopt'.
143
144 The argument `--' causes premature termination of argument
145 scanning, explicitly telling `getopt' that there are no more
146 options.
147
148 If OPTS begins with `--', then non-option arguments are treated as
149 arguments to the option '\0'. This behavior is specific to the GNU
150 `getopt'. */
151
152#ifdef __GNU_LIBRARY__
153/* Many other libraries have conflicting prototypes for getopt, with
154 differences in the consts, in stdlib.h. To avoid compilation
155 errors, only prototype getopt for the GNU C library. */
156extern int getopt (int ___argc, char *const *___argv, const char *__shortopts)
157 __THROW;
158#else /* not __GNU_LIBRARY__ */
159extern int getopt ();
160#endif /* __GNU_LIBRARY__ */
161
162#ifndef __need_getopt
163extern int getopt_long (int ___argc, char *const *___argv,
164 const char *__shortopts,
165 const struct option *__longopts, int *__longind)
166 __THROW;
167extern int getopt_long_only (int ___argc, char *const *___argv,
168 const char *__shortopts,
169 const struct option *__longopts, int *__longind)
170 __THROW;
171
172#endif
173
174#ifdef __cplusplus
175}
176#endif
177
178/* Make sure we later can get all the definitions and declarations. */
179#undef __need_getopt
180
181#endif /* getopt.h */
Note: See TracBrowser for help on using the repository browser.