edid-decode: enable UTF-8 for the emscripten version
[edid-decode.git] / vs / getopt.h
bloba13c72048555844c388b0313993106d2b7a0335d
1 /**
2 * @file getopt.h
3 * @copy 2012 MinGW.org project
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
24 #ifndef _GETOPT_H
25 #define _GETOPT_H
28 * Defines constants and function prototypes required to implement
29 * the `getopt', `getopt_long' and `getopt_long_only' APIs.
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
36 extern int optind; /* index of first non-option in argv */
37 extern int optopt; /* single option character, as parsed */
38 extern int opterr; /* flag to enable built-in diagnostics... */
39 /* (user may set to zero, to suppress) */
41 extern char *optarg; /* pointer to argument of current option */
43 extern int getopt( int, char * const [], const char * );
45 #ifdef _BSD_SOURCE
47 * BSD adds the non-standard `optreset' feature, for reinitialisation
48 * of `getopt' parsing. We support this feature, for applications which
49 * proclaim their BSD heritage, before including this header; however,
50 * to maintain portability, developers are advised to avoid it.
52 # define optreset __mingw_optreset
54 extern int optreset;
55 #endif
56 #ifdef __cplusplus
58 #endif
60 * POSIX requires the `getopt' API to be specified in `unistd.h';
61 * thus, `unistd.h' includes this header. However, we do not want
62 * to expose the `getopt_long' or `getopt_long_only' APIs, when
63 * included in this manner. Thus, close the standard __GETOPT_H__
64 * declarations block, and open an additional __GETOPT_LONG_H__
65 * specific block, only when *not* __UNISTD_H_SOURCED__, in which
66 * to declare the extended API.
68 #endif /* !defined(__GETOPT_H__) */
69 #if !defined(__UNISTD_H_SOURCED__) && !defined(__GETOPT_LONG_H__)
70 #define __GETOPT_LONG_H__
72 #ifdef __cplusplus
73 extern "C" {
74 #endif
76 struct option /* specification for a long form option... */
78 const char *name; /* option name, without leading hyphens */
79 int has_arg; /* does it take an argument? */
80 int *flag; /* where to save its status, or NULL */
81 int val; /* its associated status value */
84 enum /* permitted values for its `has_arg' field... */
86 no_argument = 0, /* option never takes an argument */
87 required_argument, /* option always requires an argument */
88 optional_argument /* option may take an argument */
91 extern int getopt_long( int, char * const [], const char *, const struct option *, int * );
92 extern int getopt_long_only( int, char * const [], const char *, const struct option *, int * );
94 extern int getsubopt(char** opt, char* const* keys, char** val);
97 * Previous MinGW implementation had...
99 #ifndef HAVE_DECL_GETOPT
101 * ...for the long form API only; keep this for compatibility.
103 # define HAVE_DECL_GETOPT 1
104 #endif
106 #ifdef __cplusplus
108 #endif
110 #endif /* !defined(__UNISTD_H_SOURCED__) && !defined(__GETOPT_LONG_H__) */