Bash  5.0-beta2
Bash - Bourne Again shell
getopt.h
Go to the documentation of this file.
1 /* getopt.h - declarations for getopt. */
2 
3 /* Copyright (C) 1989, 1990, 1991, 1992, 1993, 2008,2009 Free Software Foundation, Inc.
4 
5  This file is part of GNU Bash, the Bourne Again SHell.
6 
7  Bash is free software: you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation, either version 3 of the License, or
10  (at your option) any later version.
11 
12  Bash 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.
16 
17  You should have received a copy of the GNU General Public License
18  along with Bash. If not, see <http://www.gnu.org/licenses/>.
19 */
20 
21 /* XXX THIS HAS BEEN MODIFIED FOR INCORPORATION INTO BASH XXX */
22 
23 #ifndef _SH_GETOPT_H
24 #define _SH_GETOPT_H 1
25 
26 #include "stdc.h"
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 
34 extern char *sh_optarg;
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 EOF, this is the index of the first of the
43  non-option elements that the caller should itself scan.
44 
45  Otherwise, `sh_optind' communicates from one call to the next
46  how much of ARGV has been scanned so far. */
47 
48 extern int sh_optind;
49 
50 /* Callers store zero here to inhibit the error message `getopt' prints
51  for unrecognized options. */
52 
53 extern int sh_opterr;
54 
55 /* Set to an option character which was unrecognized. */
56 
57 extern int sh_optopt;
58 
59 /* Set to 1 when an unrecognized option is encountered. */
60 extern int sh_badopt;
61 
62 extern int sh_getopt __P((int, char *const *, const char *));
63 
64 typedef struct sh_getopt_state
65 {
66  char *gs_optarg;
67  int gs_optind;
68  int gs_curopt;
69  char *gs_nextchar;
71  int gs_flags;
73 
74 extern void sh_getopt_restore_state __P((char **));
75 
78 
81 
82 #endif /* _SH_GETOPT_H */
sh_getopt_state_t * sh_getopt_save_istate()
Definition: getopt.c:243
int gs_charindex
Definition: getopt.h:70
int sh_getopt __P((int, char *const *, const char *))
void sh_getopt_restore_istate(sh_getopt_state_t *state)
Definition: getopt.c:260
char * gs_optarg
Definition: getopt.h:66
char * gs_nextchar
Definition: getopt.h:69
void sh_getopt_dispose_istate(sh_getopt_state_t *gs)
Definition: getopt.c:236
int sh_optopt
Definition: getopt.c:78
sh_getopt_state_t * sh_getopt_alloc_istate()
Definition: getopt.c:227
int sh_optind
Definition: getopt.c:54
char * sh_optarg
Definition: getopt.c:39
int sh_opterr
Definition: getopt.c:72
int sh_getopt(int argc, char *const *argv, const char *optstring)
Definition: getopt.c:114
int gs_curopt
Definition: getopt.h:68
struct sh_getopt_state sh_getopt_state_t
int gs_optind
Definition: getopt.h:67
void sh_getopt_restore_state(char **argv)
Definition: getopt.c:219
int gs_flags
Definition: getopt.h:71
int sh_badopt
Definition: getopt.c:81