GnuCOBOL  2.0
A free COBOL compiler
cobgetopt.h
Go to the documentation of this file.
1 /* Declarations for getopt.
2  Copyright (C) 1989-1994, 1996-1999, 2001 Free Software Foundation, Inc.
3  This file is part of the GNU C Library.
4 
5  The GNU C Library is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Lesser General Public
7  License as published by the Free Software Foundation; either
8  version 2.1 of the License, or (at your option) any later version.
9 
10  The GNU C Library is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public
16  License along with the GNU C Library; if not, write to
17  the Free Software Foundation, 51 Franklin Street, Fifth Floor
18  Boston, MA 02110-1301 USA */
19 
20 /*
21  Copyright (C) 2010,2012 Free Software Foundation, Inc.
22  Modified for use in GnuCOBOL by Roger While
23 */
24 
25 #ifndef COB_GETOPT_H
26 #define COB_GETOPT_H 1
27 
28 /* For communication from `getopt' to the caller.
29  When `getopt' finds an option that takes an argument,
30  the argument value is returned here.
31  Also, when `ordering' is RETURN_IN_ORDER,
32  each non-option ARGV-element is returned here. */
33 
35 
36 /* Index in ARGV of the next element to be scanned.
37  This is used for communication to and from the caller
38  and for communication between successive calls to `getopt'.
39 
40  On entry to `getopt', zero means this is the first call; initialize.
41 
42  When `getopt' returns -1, this is the index of the first of the
43  non-option elements that the caller should itself scan.
44 
45  Otherwise, `optind' communicates from one call to the next
46  how much of ARGV has been scanned so far. */
47 
49 
50 /* Callers store zero here to inhibit the error message `getopt' prints
51  for unrecognized options. */
52 
54 
55 /* Set to an option character which was unrecognized. */
56 
58 
59 /* Describe the long-named options requested by the application.
60  The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
61  of `struct option' terminated by an element containing a name which is
62  zero.
63 
64  The field `has_arg' is:
65  no_argument (or 0) if the option does not take an argument,
66  required_argument (or 1) if the option requires an argument,
67  optional_argument (or 2) if the option takes an optional argument.
68 
69  If the field `flag' is not NULL, it points to a variable that is set
70  to the value given in the field `val' when the option is found, but
71  left unchanged if the option is not found.
72 
73  To have a long-named option do something other than set an `int' to
74  a compiled-in constant, such as set a value from `optarg', set the
75  option's `flag' field to zero and its `val' field to a nonzero
76  value (the equivalent single-letter option character, if there is
77  one). For long options that have a zero `flag' field, `getopt'
78  returns the contents of the `val' field. */
79 
80 struct option
81 {
82  const char *name;
83  /* has_arg can't be an enum because some compilers complain about
84  type mismatches in all the code that assumes it is an int. */
85  int has_arg;
86  int *flag;
87  int val;
88 };
89 
90 /* Names for the values of the `has_arg' field of `struct option'. */
91 
92 #define no_argument 0
93 #define required_argument 1
94 #define optional_argument 2
95 
96 /* Get definitions and prototypes for functions to process the
97  arguments in ARGV (ARGC of them, minus the program name) for
98  options given in OPTS.
99 
100  Return the option character from OPTS just read. Return -1 when
101  there are no more options. For unrecognized options, or options
102  missing arguments, `optopt' is set to the option letter, and '?' is
103  returned.
104 
105  The OPTS string is a list of characters which are recognized option
106  letters, optionally followed by colons, specifying that that letter
107  takes an argument, to be placed in `optarg'.
108 
109  If a letter in OPTS is followed by two colons, its argument is
110  optional. This behavior is specific to the GNU `getopt'.
111 
112  The argument `--' causes premature termination of argument
113  scanning, explicitly telling `getopt' that there are no more
114  options.
115 
116  If OPTS begins with `--', then non-option arguments are treated as
117  arguments to the option '\0'. This behavior is specific to the GNU
118  `getopt'. */
119 
120 COB_EXPIMP int cob_getopt_long_long (const int, char *const *, const char *,
121  const struct option *, int *, const int);
122 #endif
COB_EXPIMP int cob_optind
Definition: cobgetopt.h:48
int val
Definition: cobgetopt.h:87
COB_EXPIMP char * cob_optarg
Definition: cobgetopt.h:34
const char * name
Definition: cobgetopt.h:82
COB_EXPIMP int cob_optopt
Definition: cobgetopt.h:57
#define COB_EXPIMP
Definition: common.h:336
COB_EXPIMP int cob_getopt_long_long(const int, char *const *, const char *, const struct option *, int *, const int)
Definition: cobgetopt.c:321
int * flag
Definition: cobgetopt.h:86
COB_EXPIMP int cob_opterr
Definition: cobgetopt.h:53
int has_arg
Definition: cobgetopt.h:85