Qore Programming Language
1.19.1
Loading...
Searching...
No Matches
getopt_long.h
1
/*
2
* Copyright (c) 2002 Todd C. Miller <
[email protected]
>
3
*
4
* Permission to use, copy, modify, and distribute this software for any
5
* purpose with or without fee is hereby granted, provided that the above
6
* copyright notice and this permission notice appear in all copies.
7
*
8
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15
*
16
* Sponsored in part by the Defense Advanced Research Projects
17
* Agency (DARPA) and Air Force Research Laboratory, Air Force
18
* Materiel Command, USAF, under agreement number F39502-99-1-0512.
19
*/
20
/*-
21
* Copyright (c) 2000 The NetBSD Foundation, Inc.
22
* All rights reserved.
23
*
24
* This code is derived from software contributed to The NetBSD Foundation
25
* by Dieter Baron and Thomas Klausner.
26
*
27
* Redistribution and use in source and binary forms, with or without
28
* modification, are permitted provided that the following conditions
29
* are met:
30
* 1. Redistributions of source code must retain the above copyright
31
* notice, this list of conditions and the following disclaimer.
32
* 2. Redistributions in binary form must reproduce the above copyright
33
* notice, this list of conditions and the following disclaimer in the
34
* documentation and/or other materials provided with the distribution.
35
*
36
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
37
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
38
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
40
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
41
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
42
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
43
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
44
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
45
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
46
* POSSIBILITY OF SUCH DAMAGE.
47
*/
48
49
// Qore note: this file was generated from the FreeBSD libc getopt_long() implementation, copyrights as above
50
51
#ifndef _GETOPT_LONG_H
52
#define _GETOPT_LONG_H
53
54
/*
55
* Gnu like getopt_long() and BSD4.4 getsubopt()/optreset extensions
56
*/
57
#define no_argument 0
58
#define required_argument 1
59
#define optional_argument 2
60
61
hashdecl
option {
62
/* name of long option */
63
const
char
*name;
64
/*
65
* one of no_argument, required_argument, and optional_argument:
66
* whether option takes an argument
67
*/
68
int
has_arg;
69
/* if not NULL, set *flag to val when option found */
70
int
*flag;
71
/* if flag not NULL, value to set *flag to; else return value */
72
int
val;
73
};
74
75
extern
int
optind;
/* index into parent argv vector */
76
extern
char
* optarg;
77
78
DLLLOCAL
int
getopt_long(
int
nargc,
char
** nargv,
const
char
* options,
const
option* long_options,
int
* idx);
79
80
#endif