]> Creatis software - clitk.git/blob - cmake/gengetopt/include_cygwin/getopt.h
Added FindGengetopt.cmake which compiles gengetopt if not installed.
[clitk.git] / cmake / gengetopt / include_cygwin / getopt.h
1 /*
2  * Copyright (c) 1987, 1993, 1994, 1996
3  *  The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *  This product includes software developed by the University of
16  *  California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifdef _COMPILING_NEWLIB
35 #include_next "getopt.h"
36 #else
37 #ifndef __GETOPT_H__
38 #define __GETOPT_H__
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43
44 #ifndef __INSIDE_CYGWIN__
45 extern int __declspec(dllimport) opterr;        /* if error message should be printed */
46 extern int __declspec(dllimport) optind;        /* index into parent argv vector */
47 extern int __declspec(dllimport) optopt;        /* character checked for validity */
48 extern int __declspec(dllimport) optreset;      /* reset getopt */
49 extern char __declspec(dllimport) *optarg;      /* argument associated with option */
50 #endif
51
52 int getopt (int, char * const *, const char *);
53
54 #ifdef __cplusplus
55 }
56 #endif
57
58 #endif /* __GETOPT_H__ */
59
60 #ifndef __UNISTD_GETOPT__
61 #ifndef __GETOPT_LONG_H__
62 #define __GETOPT_LONG_H__
63
64 #ifdef __cplusplus
65 extern "C" {
66 #endif
67
68 struct option {
69         const char *name;
70         int  has_arg;
71         int *flag;
72         int val;
73 };
74
75 int getopt_long (int, char *const *, const char *, const struct option *, int *);
76 int getopt_long_only (int, char *const *, const char *, const struct option *, int *);
77
78 #ifndef HAVE_DECL_GETOPT
79 #define HAVE_DECL_GETOPT 1
80 #endif
81
82 #define no_argument             0
83 #define required_argument       1
84 #define optional_argument       2
85
86 #ifdef __cplusplus
87 }
88 #endif
89
90 #endif /* __GETOPT_LONG_H__ */
91 #endif /* __UNISTD_GETOPT__ */
92 #endif /*_INSIDE_NEWLIB*/