mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-04-06 18:00:24 +08:00
Historically
ncgen3 and ncgen have treated uppercase atomic types the same as lower case. Change so upper case are no longer allowed. Also, synch oc.
This commit is contained in:
parent
253a26cb82
commit
254c0e7c96
@ -202,21 +202,21 @@ yytext[MAXTRST-1] = '\0';
|
||||
return lexdebug(OPAQUESTRING);
|
||||
}
|
||||
|
||||
[cC]ompound|[sS]truct|[sS]tructure|STRUCT|COMPOUND|STRUCTURE {return lexdebug(COMPOUND);}
|
||||
enum|ENUM {return lexdebug(ENUM);}
|
||||
opaque|OPAQUE {return lexdebug(OPAQUE);}
|
||||
compound|struct|structure {return lexdebug(COMPOUND);}
|
||||
enum {return lexdebug(ENUM);}
|
||||
opaque {return lexdebug(OPAQUE);}
|
||||
|
||||
float|FLOAT|real|REAL {return lexdebug(FLOAT_K);}
|
||||
char|CHAR {return lexdebug(CHAR_K);}
|
||||
byte|BYTE {return lexdebug(BYTE_K);}
|
||||
ubyte|UBYTE {return lexdebug(UBYTE_K);}
|
||||
short|SHORT {return lexdebug(SHORT_K);}
|
||||
ushort|USHORT {return lexdebug(USHORT_K);}
|
||||
long|LONG|int|INT|integer|INTEGER {return lexdebug(INT_K);}
|
||||
ulong|ULONG|uint|UINT|uinteger|UINTEGER {return lexdebug(UINT_K);}
|
||||
int64|INT64 {return lexdebug(INT64_K);}
|
||||
uint64|UINT64 {return lexdebug(UINT64_K);}
|
||||
double|DOUBLE {return lexdebug(DOUBLE_K);}
|
||||
float|real {return lexdebug(FLOAT_K);}
|
||||
char {return lexdebug(CHAR_K);}
|
||||
byte {return lexdebug(BYTE_K);}
|
||||
ubyte {return lexdebug(UBYTE_K);}
|
||||
short {return lexdebug(SHORT_K);}
|
||||
ushort {return lexdebug(USHORT_K);}
|
||||
long|int|integer {return lexdebug(INT_K);}
|
||||
ulong|uint|uinteger {return lexdebug(UINT_K);}
|
||||
int64 {return lexdebug(INT64_K);}
|
||||
uint64 {return lexdebug(UINT64_K);}
|
||||
double {return lexdebug(DOUBLE_K);}
|
||||
unlimited|UNLIMITED {int32_val = -1;
|
||||
return lexdebug(NC_UNLIMITED_K);}
|
||||
|
||||
|
341
ncgen/ncgentab.c
341
ncgen/ncgentab.c
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
||||
/* A Bison parser, made by GNU Bison 2.7. */
|
||||
/* A Bison parser, made by GNU Bison 2.6.4. */
|
||||
|
||||
/* Bison interface for Yacc-like parsers in C
|
||||
|
||||
@ -100,7 +100,7 @@ extern int ncgdebug;
|
||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||
typedef union YYSTYPE
|
||||
{
|
||||
/* Line 2058 of yacc.c */
|
||||
/* Line 2077 of yacc.c */
|
||||
#line 131 "ncgen.y"
|
||||
|
||||
Symbol* sym;
|
||||
@ -111,7 +111,7 @@ Datalist* datalist;
|
||||
Constant constant;
|
||||
|
||||
|
||||
/* Line 2058 of yacc.c */
|
||||
/* Line 2077 of yacc.c */
|
||||
#line 116 "ncgen.tab.h"
|
||||
} YYSTYPE;
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
|
1336
ncgen/ncgenyy.c
1336
ncgen/ncgenyy.c
File diff suppressed because it is too large
Load Diff
@ -34,12 +34,10 @@ EXTRA_DIST += CMakeLists.txt XGetopt.c
|
||||
|
||||
# This is used if someone wants to rebuild ncgenyy.c or ncgentab.c
|
||||
# Otherwise never invoked, but records how to do it. Don't forget to
|
||||
# manually insert #include <config.h> in ncgenyy.c!
|
||||
ncgenyy.c: ncgen.l
|
||||
# manually insert #include "config.h" in ncgenyy.c!
|
||||
makeparser::
|
||||
flex -Pncg -8 ncgen.l
|
||||
mv lex.ncg.c ncgenyy.c
|
||||
|
||||
ncgentab.c ncgentab.h: ncgen.y
|
||||
bison -pncg -d ncgen.y
|
||||
mv ncgen.tab.c ncgentab.c
|
||||
mv ncgen.tab.h ncgentab.h
|
||||
|
@ -118,12 +118,12 @@ exp ([eE][+-]?[0-9]+)
|
||||
return (TERMSTRING);
|
||||
}
|
||||
|
||||
float|FLOAT|real|REAL {return (FLOAT_K);}
|
||||
char|CHAR {return (CHAR_K);}
|
||||
byte|BYTE {return (BYTE_K);}
|
||||
short|SHORT {return (SHORT_K);}
|
||||
long|LONG|int|INT|integer|INTEGER {return (INT_K);}
|
||||
double|DOUBLE {return (DOUBLE_K);}
|
||||
float|real {return (FLOAT_K);}
|
||||
char {return (CHAR_K);}
|
||||
byte {return (BYTE_K);}
|
||||
short {return (SHORT_K);}
|
||||
long|int|integer {return (INT_K);}
|
||||
double {return (DOUBLE_K);}
|
||||
unlimited|UNLIMITED {int_val = -1;
|
||||
return (NC_UNLIMITED_K);}
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
/* A Bison parser, made by GNU Bison 2.5. */
|
||||
/* A Bison parser, made by GNU Bison 2.6.4. */
|
||||
|
||||
/* Bison implementation for Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
|
||||
Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@ -44,7 +44,7 @@
|
||||
#define YYBISON 1
|
||||
|
||||
/* Bison version. */
|
||||
#define YYBISON_VERSION "2.5"
|
||||
#define YYBISON_VERSION "2.6.4"
|
||||
|
||||
/* Skeleton name. */
|
||||
#define YYSKELETON_NAME "yacc.c"
|
||||
@ -58,8 +58,6 @@
|
||||
/* Pull parsers. */
|
||||
#define YYPULL 1
|
||||
|
||||
/* Using locations. */
|
||||
#define YYLSP_NEEDED 0
|
||||
|
||||
/* Substitute the variable and function names. */
|
||||
#define yyparse ncgparse
|
||||
@ -70,11 +68,9 @@
|
||||
#define yydebug ncgdebug
|
||||
#define yynerrs ncgnerrs
|
||||
|
||||
|
||||
/* Copy the first part of user declarations. */
|
||||
|
||||
/* Line 268 of yacc.c */
|
||||
#line 9 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 358 of yacc.c */
|
||||
#line 9 "ncgen.y"
|
||||
|
||||
#ifdef sccs
|
||||
static char SccsId[] = "$Id: ncgen.y,v 1.34 2010/03/31 18:18:41 dmh Exp $";
|
||||
@ -147,14 +143,16 @@ void yyerror(char*);
|
||||
int yyerror(char*);
|
||||
#endif
|
||||
|
||||
/* Line 358 of yacc.c */
|
||||
#line 148 "ncgen.tab.c"
|
||||
|
||||
/* Line 268 of yacc.c */
|
||||
#line 153 "ncgen.tab.c"
|
||||
|
||||
/* Enabling traces. */
|
||||
#ifndef YYDEBUG
|
||||
# define YYDEBUG 0
|
||||
#endif
|
||||
# ifndef YY_NULL
|
||||
# if defined __cplusplus && 201103L <= __cplusplus
|
||||
# define YY_NULL nullptr
|
||||
# else
|
||||
# define YY_NULL 0
|
||||
# endif
|
||||
# endif
|
||||
|
||||
/* Enabling verbose error messages. */
|
||||
#ifdef YYERROR_VERBOSE
|
||||
@ -164,11 +162,17 @@ int yyerror(char*);
|
||||
# define YYERROR_VERBOSE 0
|
||||
#endif
|
||||
|
||||
/* Enabling the token table. */
|
||||
#ifndef YYTOKEN_TABLE
|
||||
# define YYTOKEN_TABLE 0
|
||||
/* In a future release of Bison, this section will be replaced
|
||||
by #include "ncgen.tab.h". */
|
||||
#ifndef YY_NCG_NCGEN_TAB_H_INCLUDED
|
||||
# define YY_NCG_NCGEN_TAB_H_INCLUDED
|
||||
/* Enabling traces. */
|
||||
#ifndef YYDEBUG
|
||||
# define YYDEBUG 0
|
||||
#endif
|
||||
#if YYDEBUG
|
||||
extern int ncgdebug;
|
||||
#endif
|
||||
|
||||
|
||||
/* Tokens. */
|
||||
#ifndef YYTOKENTYPE
|
||||
@ -200,7 +204,6 @@ int yyerror(char*);
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||
typedef int YYSTYPE;
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
@ -208,12 +211,28 @@ typedef int YYSTYPE;
|
||||
# define YYSTYPE_IS_DECLARED 1
|
||||
#endif
|
||||
|
||||
extern YYSTYPE ncglval;
|
||||
|
||||
#ifdef YYPARSE_PARAM
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int ncgparse (void *YYPARSE_PARAM);
|
||||
#else
|
||||
int ncgparse ();
|
||||
#endif
|
||||
#else /* ! YYPARSE_PARAM */
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int ncgparse (void);
|
||||
#else
|
||||
int ncgparse ();
|
||||
#endif
|
||||
#endif /* ! YYPARSE_PARAM */
|
||||
|
||||
#endif /* !YY_NCG_NCGEN_TAB_H_INCLUDED */
|
||||
|
||||
/* Copy the second part of user declarations. */
|
||||
|
||||
|
||||
/* Line 343 of yacc.c */
|
||||
#line 217 "ncgen.tab.c"
|
||||
/* Line 377 of yacc.c */
|
||||
#line 236 "ncgen.tab.c"
|
||||
|
||||
#ifdef short
|
||||
# undef short
|
||||
@ -266,24 +285,24 @@ typedef short int yytype_int16;
|
||||
# if defined YYENABLE_NLS && YYENABLE_NLS
|
||||
# if ENABLE_NLS
|
||||
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
|
||||
# define YY_(msgid) dgettext ("bison-runtime", msgid)
|
||||
# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
|
||||
# endif
|
||||
# endif
|
||||
# ifndef YY_
|
||||
# define YY_(msgid) msgid
|
||||
# define YY_(Msgid) Msgid
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* Suppress unused-variable warnings by "using" E. */
|
||||
#if ! defined lint || defined __GNUC__
|
||||
# define YYUSE(e) ((void) (e))
|
||||
# define YYUSE(E) ((void) (E))
|
||||
#else
|
||||
# define YYUSE(e) /* empty */
|
||||
# define YYUSE(E) /* empty */
|
||||
#endif
|
||||
|
||||
/* Identity function, used to suppress warnings about constant conditions. */
|
||||
#ifndef lint
|
||||
# define YYID(n) (n)
|
||||
# define YYID(N) (N)
|
||||
#else
|
||||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||||
|| defined __cplusplus || defined _MSC_VER)
|
||||
@ -319,6 +338,7 @@ YYID (yyi)
|
||||
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
|
||||
|| defined __cplusplus || defined _MSC_VER)
|
||||
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
|
||||
/* Use EXIT_SUCCESS as a witness for stdlib.h. */
|
||||
# ifndef EXIT_SUCCESS
|
||||
# define EXIT_SUCCESS 0
|
||||
# endif
|
||||
@ -410,20 +430,20 @@ union yyalloc
|
||||
#endif
|
||||
|
||||
#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
|
||||
/* Copy COUNT objects from FROM to TO. The source and destination do
|
||||
/* Copy COUNT objects from SRC to DST. The source and destination do
|
||||
not overlap. */
|
||||
# ifndef YYCOPY
|
||||
# if defined __GNUC__ && 1 < __GNUC__
|
||||
# define YYCOPY(To, From, Count) \
|
||||
__builtin_memcpy (To, From, (Count) * sizeof (*(From)))
|
||||
# define YYCOPY(Dst, Src, Count) \
|
||||
__builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
|
||||
# else
|
||||
# define YYCOPY(To, From, Count) \
|
||||
do \
|
||||
{ \
|
||||
YYSIZE_T yyi; \
|
||||
for (yyi = 0; yyi < (Count); yyi++) \
|
||||
(To)[yyi] = (From)[yyi]; \
|
||||
} \
|
||||
# define YYCOPY(Dst, Src, Count) \
|
||||
do \
|
||||
{ \
|
||||
YYSIZE_T yyi; \
|
||||
for (yyi = 0; yyi < (Count); yyi++) \
|
||||
(Dst)[yyi] = (Src)[yyi]; \
|
||||
} \
|
||||
while (YYID (0))
|
||||
# endif
|
||||
# endif
|
||||
@ -538,7 +558,7 @@ static const yytype_uint16 yyrline[] =
|
||||
};
|
||||
#endif
|
||||
|
||||
#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
|
||||
#if YYDEBUG || YYERROR_VERBOSE || 0
|
||||
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
|
||||
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
|
||||
static const char *const yytname[] =
|
||||
@ -553,7 +573,7 @@ static const char *const yytname[] =
|
||||
"vardecl", "type", "varlist", "varspec", "$@3", "var", "dimspec",
|
||||
"dimlist", "vdim", "attdecl", "$@4", "gattdecl", "$@5", "att", "gatt",
|
||||
"avar", "attr", "attvallist", "aconst", "attconst", "datasection",
|
||||
"datadecls", "datadecl", "$@6", "constlist", "dconst", "$@7", "const", 0
|
||||
"datadecls", "datadecl", "$@6", "constlist", "dconst", "$@7", "const", YY_NULL
|
||||
};
|
||||
#endif
|
||||
|
||||
@ -669,10 +689,10 @@ static const yytype_uint8 yytable[] =
|
||||
93, 66, 101, 94, 111, 0, 86, 0, 51
|
||||
};
|
||||
|
||||
#define yypact_value_is_default(yystate) \
|
||||
((yystate) == (-73))
|
||||
#define yypact_value_is_default(Yystate) \
|
||||
(!!((Yystate) == (-73)))
|
||||
|
||||
#define yytable_value_is_error(yytable_value) \
|
||||
#define yytable_value_is_error(Yytable_value) \
|
||||
YYID (0)
|
||||
|
||||
static const yytype_int8 yycheck[] =
|
||||
@ -732,17 +752,18 @@ static const yytype_uint8 yystos[] =
|
||||
|
||||
#define YYRECOVERING() (!!yyerrstatus)
|
||||
|
||||
#define YYBACKUP(Token, Value) \
|
||||
do \
|
||||
if (yychar == YYEMPTY && yylen == 1) \
|
||||
{ \
|
||||
yychar = (Token); \
|
||||
yylval = (Value); \
|
||||
YYPOPSTACK (1); \
|
||||
goto yybackup; \
|
||||
} \
|
||||
else \
|
||||
{ \
|
||||
#define YYBACKUP(Token, Value) \
|
||||
do \
|
||||
if (yychar == YYEMPTY) \
|
||||
{ \
|
||||
yychar = (Token); \
|
||||
yylval = (Value); \
|
||||
YYPOPSTACK (yylen); \
|
||||
yystate = *yyssp; \
|
||||
goto yybackup; \
|
||||
} \
|
||||
else \
|
||||
{ \
|
||||
yyerror (YY_("syntax error: cannot back up")); \
|
||||
YYERROR; \
|
||||
} \
|
||||
@ -752,32 +773,33 @@ while (YYID (0))
|
||||
#define YYTERROR 1
|
||||
#define YYERRCODE 256
|
||||
|
||||
|
||||
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
|
||||
If N is 0, then set CURRENT to the empty location which ends
|
||||
the previous symbol: RHS[0] (always defined). */
|
||||
|
||||
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
|
||||
#ifndef YYLLOC_DEFAULT
|
||||
# define YYLLOC_DEFAULT(Current, Rhs, N) \
|
||||
do \
|
||||
if (YYID (N)) \
|
||||
{ \
|
||||
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
|
||||
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
|
||||
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
|
||||
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
|
||||
} \
|
||||
else \
|
||||
{ \
|
||||
(Current).first_line = (Current).last_line = \
|
||||
YYRHSLOC (Rhs, 0).last_line; \
|
||||
(Current).first_column = (Current).last_column = \
|
||||
YYRHSLOC (Rhs, 0).last_column; \
|
||||
} \
|
||||
# define YYLLOC_DEFAULT(Current, Rhs, N) \
|
||||
do \
|
||||
if (YYID (N)) \
|
||||
{ \
|
||||
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
|
||||
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
|
||||
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
|
||||
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
|
||||
} \
|
||||
else \
|
||||
{ \
|
||||
(Current).first_line = (Current).last_line = \
|
||||
YYRHSLOC (Rhs, 0).last_line; \
|
||||
(Current).first_column = (Current).last_column = \
|
||||
YYRHSLOC (Rhs, 0).last_column; \
|
||||
} \
|
||||
while (YYID (0))
|
||||
#endif
|
||||
|
||||
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
|
||||
|
||||
|
||||
|
||||
/* This macro is provided for backward compatibility. */
|
||||
|
||||
@ -837,6 +859,8 @@ yy_symbol_value_print (yyoutput, yytype, yyvaluep)
|
||||
YYSTYPE const * const yyvaluep;
|
||||
#endif
|
||||
{
|
||||
FILE *yyo = yyoutput;
|
||||
YYUSE (yyo);
|
||||
if (!yyvaluep)
|
||||
return;
|
||||
# ifdef YYPRINT
|
||||
@ -1088,12 +1112,12 @@ static int
|
||||
yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
|
||||
yytype_int16 *yyssp, int yytoken)
|
||||
{
|
||||
YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]);
|
||||
YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
|
||||
YYSIZE_T yysize = yysize0;
|
||||
YYSIZE_T yysize1;
|
||||
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
|
||||
/* Internationalized format string. */
|
||||
const char *yyformat = 0;
|
||||
const char *yyformat = YY_NULL;
|
||||
/* Arguments of yyformat. */
|
||||
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
|
||||
/* Number of reported tokens (one for the "unexpected", one per
|
||||
@ -1153,7 +1177,7 @@ yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
|
||||
break;
|
||||
}
|
||||
yyarg[yycount++] = yytname[yyx];
|
||||
yysize1 = yysize + yytnamerr (0, yytname[yyx]);
|
||||
yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
|
||||
if (! (yysize <= yysize1
|
||||
&& yysize1 <= YYSTACK_ALLOC_MAXIMUM))
|
||||
return 2;
|
||||
@ -1245,25 +1269,20 @@ yydestruct (yymsg, yytype, yyvaluep)
|
||||
}
|
||||
|
||||
|
||||
/* Prevent warnings from -Wmissing-prototypes. */
|
||||
#ifdef YYPARSE_PARAM
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int yyparse (void *YYPARSE_PARAM);
|
||||
#else
|
||||
int yyparse ();
|
||||
#endif
|
||||
#else /* ! YYPARSE_PARAM */
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int yyparse (void);
|
||||
#else
|
||||
int yyparse ();
|
||||
#endif
|
||||
#endif /* ! YYPARSE_PARAM */
|
||||
|
||||
|
||||
/* The lookahead symbol. */
|
||||
int yychar;
|
||||
|
||||
|
||||
#ifndef YYLVAL_INITIALIZE
|
||||
# define YYLVAL_INITIALIZE()
|
||||
#endif
|
||||
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
|
||||
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
|
||||
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
|
||||
#endif
|
||||
|
||||
/* The semantic value of the lookahead symbol. */
|
||||
YYSTYPE yylval;
|
||||
|
||||
@ -1305,7 +1324,7 @@ yyparse ()
|
||||
`yyss': related to states.
|
||||
`yyvs': related to semantic values.
|
||||
|
||||
Refer to the stacks thru separate pointers, to allow yyoverflow
|
||||
Refer to the stacks through separate pointers, to allow yyoverflow
|
||||
to reallocate them elsewhere. */
|
||||
|
||||
/* The state stack. */
|
||||
@ -1323,7 +1342,7 @@ yyparse ()
|
||||
int yyn;
|
||||
int yyresult;
|
||||
/* Lookahead token as an internal (translated) token number. */
|
||||
int yytoken;
|
||||
int yytoken = 0;
|
||||
/* The variables used to return semantic value and location from the
|
||||
action routines. */
|
||||
YYSTYPE yyval;
|
||||
@ -1341,7 +1360,6 @@ yyparse ()
|
||||
Keep to zero when no symbol should be popped. */
|
||||
int yylen = 0;
|
||||
|
||||
yytoken = 0;
|
||||
yyss = yyssa;
|
||||
yyvs = yyvsa;
|
||||
yystacksize = YYINITDEPTH;
|
||||
@ -1360,6 +1378,7 @@ yyparse ()
|
||||
yyssp = yyss;
|
||||
yyvsp = yyvs;
|
||||
|
||||
YYLVAL_INITIALIZE ();
|
||||
goto yysetstate;
|
||||
|
||||
/*------------------------------------------------------------.
|
||||
@ -1500,7 +1519,9 @@ yybackup:
|
||||
yychar = YYEMPTY;
|
||||
|
||||
yystate = yyn;
|
||||
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
|
||||
*++yyvsp = yylval;
|
||||
YY_IGNORE_MAYBE_UNINITIALIZED_END
|
||||
|
||||
goto yynewstate;
|
||||
|
||||
@ -1537,16 +1558,14 @@ yyreduce:
|
||||
switch (yyn)
|
||||
{
|
||||
case 2:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 114 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 114 "ncgen.y"
|
||||
{ init_netcdf(); }
|
||||
break;
|
||||
|
||||
case 3:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 117 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 117 "ncgen.y"
|
||||
{
|
||||
if (derror_count == 0)
|
||||
define_netcdf(netcdfname);
|
||||
@ -1556,9 +1575,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 4:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 125 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 125 "ncgen.y"
|
||||
{
|
||||
if (derror_count == 0)
|
||||
close_netcdf();
|
||||
@ -1566,9 +1584,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 11:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 140 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 140 "ncgen.y"
|
||||
{ if (int_val <= 0)
|
||||
derror("dimension length must be positive");
|
||||
dims[ndims].size = int_val;
|
||||
@ -1577,9 +1594,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 12:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 146 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 146 "ncgen.y"
|
||||
{ /* for rare case where 2^31 < dimsize < 2^32 */
|
||||
if (double_val <= 0)
|
||||
derror("dimension length must be positive");
|
||||
@ -1593,9 +1609,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 13:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 157 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 157 "ncgen.y"
|
||||
{ if (rec_dim != -1)
|
||||
derror("only one NC_UNLIMITED dimension allowed");
|
||||
rec_dim = ndims; /* the unlimited (record) dimension */
|
||||
@ -1605,9 +1620,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 14:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 165 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 165 "ncgen.y"
|
||||
{
|
||||
if ((yyvsp[(1) - (1)])->is_dim == 1) {
|
||||
derror( "duplicate dimension declaration for %s",
|
||||
@ -1626,51 +1640,44 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 27:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 197 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 197 "ncgen.y"
|
||||
{ type_code = NC_BYTE; }
|
||||
break;
|
||||
|
||||
case 28:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 198 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 198 "ncgen.y"
|
||||
{ type_code = NC_CHAR; }
|
||||
break;
|
||||
|
||||
case 29:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 199 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 199 "ncgen.y"
|
||||
{ type_code = NC_SHORT; }
|
||||
break;
|
||||
|
||||
case 30:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 200 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 200 "ncgen.y"
|
||||
{ type_code = NC_INT; }
|
||||
break;
|
||||
|
||||
case 31:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 201 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 201 "ncgen.y"
|
||||
{ type_code = NC_FLOAT; }
|
||||
break;
|
||||
|
||||
case 32:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 202 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 202 "ncgen.y"
|
||||
{ type_code = NC_DOUBLE; }
|
||||
break;
|
||||
|
||||
case 35:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 208 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 208 "ncgen.y"
|
||||
{
|
||||
static struct vars dummyvar;
|
||||
|
||||
@ -1706,9 +1713,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 36:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 241 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 241 "ncgen.y"
|
||||
{
|
||||
vars[nvars].ndims = nvdims;
|
||||
nvars++;
|
||||
@ -1716,9 +1722,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 42:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 255 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 255 "ncgen.y"
|
||||
{
|
||||
if (nvdims >= NC_MAX_VAR_DIMS) {
|
||||
derror("%s has too many dimensions",vars[nvars].name);
|
||||
@ -1741,54 +1746,48 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 43:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 276 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 276 "ncgen.y"
|
||||
{
|
||||
defatt();
|
||||
}
|
||||
break;
|
||||
|
||||
case 44:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 280 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 280 "ncgen.y"
|
||||
{
|
||||
equalatt();
|
||||
}
|
||||
break;
|
||||
|
||||
case 45:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 285 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 285 "ncgen.y"
|
||||
{
|
||||
defatt();
|
||||
}
|
||||
break;
|
||||
|
||||
case 46:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 289 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 289 "ncgen.y"
|
||||
{
|
||||
equalatt();
|
||||
}
|
||||
break;
|
||||
|
||||
case 48:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 297 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 297 "ncgen.y"
|
||||
{
|
||||
varnum = NC_GLOBAL; /* handle of "global" attribute */
|
||||
}
|
||||
break;
|
||||
|
||||
case 49:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 303 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 303 "ncgen.y"
|
||||
{ if ((yyvsp[(1) - (1)])->is_var == 1)
|
||||
varnum = (yyvsp[(1) - (1)])->vnum;
|
||||
else {
|
||||
@ -1800,9 +1799,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 50:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 313 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 313 "ncgen.y"
|
||||
{
|
||||
/* make sure atts array will hold attributes */
|
||||
grow_aarray(natts, /* must hold natts+1 atts */
|
||||
@ -1815,9 +1813,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 53:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 327 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 327 "ncgen.y"
|
||||
{
|
||||
if (valtype == NC_UNSPECIFIED)
|
||||
valtype = atype_code;
|
||||
@ -1827,9 +1824,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 54:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 336 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 336 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_CHAR;
|
||||
*char_valp++ = char_val;
|
||||
@ -1838,9 +1834,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 55:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 342 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 342 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_CHAR;
|
||||
{
|
||||
@ -1856,9 +1851,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 56:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 355 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 355 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_BYTE;
|
||||
*byte_valp++ = byte_val;
|
||||
@ -1867,9 +1861,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 57:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 361 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 361 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_SHORT;
|
||||
*short_valp++ = short_val;
|
||||
@ -1878,9 +1871,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 58:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 367 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 367 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_INT;
|
||||
*int_valp++ = int_val;
|
||||
@ -1889,9 +1881,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 59:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 373 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 373 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_FLOAT;
|
||||
*float_valp++ = float_val;
|
||||
@ -1900,9 +1891,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 60:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 379 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 379 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_DOUBLE;
|
||||
*double_valp++ = double_val;
|
||||
@ -1911,9 +1901,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 66:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 395 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 395 "ncgen.y"
|
||||
{
|
||||
valtype = vars[varnum].type; /* variable type */
|
||||
valnum = 0; /* values accumulated for variable */
|
||||
@ -1967,9 +1956,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 67:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 446 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 446 "ncgen.y"
|
||||
{
|
||||
if (valnum < var_len) { /* leftovers */
|
||||
nc_fill(valtype,
|
||||
@ -1987,9 +1975,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 70:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 465 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 465 "ncgen.y"
|
||||
{
|
||||
if(valnum >= var_len) {
|
||||
if (vars[varnum].dims[0] != rec_dim) { /* not recvar */
|
||||
@ -2017,9 +2004,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 71:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 490 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 490 "ncgen.y"
|
||||
{
|
||||
if (not_a_string) {
|
||||
switch (valtype) {
|
||||
@ -2048,9 +2034,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 72:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 518 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 518 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_CHAR;
|
||||
switch (valtype) {
|
||||
@ -2079,9 +2064,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 73:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 544 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 544 "ncgen.y"
|
||||
{
|
||||
not_a_string = 0;
|
||||
atype_code = NC_CHAR;
|
||||
@ -2139,9 +2123,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 74:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 599 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 599 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_BYTE;
|
||||
switch (valtype) {
|
||||
@ -2170,9 +2153,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 75:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 625 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 625 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_SHORT;
|
||||
switch (valtype) {
|
||||
@ -2201,9 +2183,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 76:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 651 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 651 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_INT;
|
||||
switch (valtype) {
|
||||
@ -2232,9 +2213,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 77:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 677 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 677 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_FLOAT;
|
||||
switch (valtype) {
|
||||
@ -2263,9 +2243,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 78:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 703 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 703 "ncgen.y"
|
||||
{
|
||||
atype_code = NC_DOUBLE;
|
||||
switch (valtype) {
|
||||
@ -2297,9 +2276,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
case 79:
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 732 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 732 "ncgen.y"
|
||||
{
|
||||
/* store fill_value */
|
||||
switch (valtype) {
|
||||
@ -2334,9 +2312,8 @@ yyreduce:
|
||||
break;
|
||||
|
||||
|
||||
|
||||
/* Line 1806 of yacc.c */
|
||||
#line 2340 "ncgen.tab.c"
|
||||
/* Line 1813 of yacc.c */
|
||||
#line 2317 "ncgen.tab.c"
|
||||
default: break;
|
||||
}
|
||||
/* User semantic actions sometimes alter yychar, and that requires
|
||||
@ -2499,7 +2476,9 @@ yyerrlab1:
|
||||
YY_STACK_PRINT (yyss, yyssp);
|
||||
}
|
||||
|
||||
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
|
||||
*++yyvsp = yylval;
|
||||
YY_IGNORE_MAYBE_UNINITIALIZED_END
|
||||
|
||||
|
||||
/* Shift the error token. */
|
||||
@ -2523,7 +2502,7 @@ yyabortlab:
|
||||
yyresult = 1;
|
||||
goto yyreturn;
|
||||
|
||||
#if !defined(yyoverflow) || YYERROR_VERBOSE
|
||||
#if !defined yyoverflow || YYERROR_VERBOSE
|
||||
/*-------------------------------------------------.
|
||||
| yyexhaustedlab -- memory exhaustion comes here. |
|
||||
`-------------------------------------------------*/
|
||||
@ -2565,9 +2544,8 @@ yyreturn:
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Line 2067 of yacc.c */
|
||||
#line 767 "/home/wfisher/Desktop/netcdf-cmake/ncgen3/ncgen.y"
|
||||
/* Line 2076 of yacc.c */
|
||||
#line 767 "ncgen.y"
|
||||
|
||||
|
||||
/* HELPER PROGRAMS */
|
||||
@ -2697,4 +2675,3 @@ clearout(void) /* reset symbol table to empty */
|
||||
#define YY_NO_INPUT
|
||||
|
||||
#include "ncgenyy.c"
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
/* A Bison parser, made by GNU Bison 2.5. */
|
||||
/* A Bison parser, made by GNU Bison 2.6.4. */
|
||||
|
||||
/* Bison interface for Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
|
||||
Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@ -30,6 +30,15 @@
|
||||
This special exception was added by the Free Software Foundation in
|
||||
version 2.2 of Bison. */
|
||||
|
||||
#ifndef YY_NCG_NCGEN_TAB_H_INCLUDED
|
||||
# define YY_NCG_NCGEN_TAB_H_INCLUDED
|
||||
/* Enabling traces. */
|
||||
#ifndef YYDEBUG
|
||||
# define YYDEBUG 0
|
||||
#endif
|
||||
#if YYDEBUG
|
||||
extern int ncgdebug;
|
||||
#endif
|
||||
|
||||
/* Tokens. */
|
||||
#ifndef YYTOKENTYPE
|
||||
@ -61,7 +70,6 @@
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||
typedef int YYSTYPE;
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
@ -71,4 +79,18 @@ typedef int YYSTYPE;
|
||||
|
||||
extern YYSTYPE ncglval;
|
||||
|
||||
#ifdef YYPARSE_PARAM
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int ncgparse (void *YYPARSE_PARAM);
|
||||
#else
|
||||
int ncgparse ();
|
||||
#endif
|
||||
#else /* ! YYPARSE_PARAM */
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int ncgparse (void);
|
||||
#else
|
||||
int ncgparse ();
|
||||
#endif
|
||||
#endif /* ! YYPARSE_PARAM */
|
||||
|
||||
#endif /* !YY_NCG_NCGEN_TAB_H_INCLUDED */
|
||||
|
756
ncgen3/ncgenyy.c
756
ncgen3/ncgenyy.c
@ -387,37 +387,34 @@ struct yy_trans_info
|
||||
flex_int32_t yy_verify;
|
||||
flex_int32_t yy_nxt;
|
||||
};
|
||||
static yyconst flex_int16_t yy_accept[264] =
|
||||
static yyconst flex_int16_t yy_accept[236] =
|
||||
{ 0,
|
||||
0, 0, 31, 29, 28, 17, 29, 29, 29, 29,
|
||||
19, 29, 22, 22, 16, 16, 16, 16, 16, 16,
|
||||
16, 16, 16, 16, 16, 16, 16, 29, 16, 16,
|
||||
16, 16, 16, 16, 16, 16, 16, 16, 16, 29,
|
||||
29, 29, 28, 0, 2, 0, 0, 0, 19, 22,
|
||||
22, 0, 0, 19, 19, 0, 20, 1, 23, 23,
|
||||
18, 23, 22, 21, 0, 22, 18, 16, 0, 0,
|
||||
0, 0, 16, 16, 16, 16, 16, 16, 16, 16,
|
||||
16, 16, 29, 16, 16, 16, 16, 16, 16, 16,
|
||||
16, 16, 16, 16, 29, 29, 29, 28, 0, 2,
|
||||
0, 0, 0, 19, 22, 22, 0, 0, 19, 19,
|
||||
0, 20, 1, 23, 23, 18, 23, 22, 21, 0,
|
||||
22, 18, 16, 0, 0, 0, 0, 16, 16, 16,
|
||||
16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
|
||||
16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
|
||||
16, 16, 0, 0, 24, 0, 0, 0, 0, 0,
|
||||
|
||||
16, 16, 16, 16, 16, 0, 0, 24, 0, 0,
|
||||
0, 0, 0, 19, 0, 0, 19, 1, 23, 19,
|
||||
23, 0, 0, 16, 16, 16, 16, 16, 16, 16,
|
||||
16, 16, 16, 7, 16, 16, 16, 14, 16, 16,
|
||||
16, 16, 16, 16, 16, 16, 16, 16, 7, 16,
|
||||
16, 16, 16, 16, 16, 0, 27, 25, 0, 0,
|
||||
19, 0, 19, 20, 19, 0, 5, 4, 16, 16,
|
||||
16, 16, 16, 16, 16, 15, 16, 7, 16, 3,
|
||||
16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
|
||||
16, 16, 16, 25, 0, 26, 0, 15, 0, 12,
|
||||
|
||||
19, 0, 0, 19, 1, 23, 19, 23, 0, 0,
|
||||
16, 16, 16, 16, 16, 16, 16, 16, 14, 16,
|
||||
16, 16, 16, 16, 16, 16, 16, 7, 16, 16,
|
||||
16, 16, 16, 16, 0, 27, 25, 0, 0, 19,
|
||||
0, 19, 20, 19, 0, 16, 16, 16, 16, 15,
|
||||
16, 16, 16, 16, 5, 4, 16, 16, 16, 16,
|
||||
16, 7, 16, 16, 3, 16, 16, 16, 25, 0,
|
||||
26, 0, 15, 0, 12, 16, 16, 16, 16, 16,
|
||||
16, 16, 16, 16, 16, 16, 16, 6, 16, 16,
|
||||
16, 16, 16, 16, 16, 16, 16, 0, 16, 8,
|
||||
16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
|
||||
16, 0, 16, 16, 16, 16, 0, 16, 16, 16,
|
||||
16, 16, 0, 16, 16, 13, 13, 16, 16, 16,
|
||||
16, 16, 14, 16, 9, 16, 16, 16, 16, 11,
|
||||
16, 10, 0
|
||||
0, 16, 16, 16, 16, 16, 16, 16, 16, 8,
|
||||
|
||||
16, 16, 16, 0, 16, 16, 16, 16, 0, 16,
|
||||
16, 16, 16, 16, 0, 16, 16, 13, 13, 16,
|
||||
16, 16, 16, 16, 14, 16, 9, 16, 16, 16,
|
||||
16, 11, 16, 10, 0
|
||||
} ;
|
||||
|
||||
static yyconst flex_int32_t yy_ec[256] =
|
||||
@ -429,271 +426,245 @@ static yyconst flex_int32_t yy_ec[256] =
|
||||
6, 6, 9, 6, 10, 11, 12, 13, 14, 14,
|
||||
14, 14, 14, 14, 14, 15, 15, 16, 6, 6,
|
||||
6, 6, 6, 17, 18, 19, 20, 21, 22, 23,
|
||||
24, 25, 26, 27, 27, 28, 29, 30, 31, 27,
|
||||
27, 32, 33, 34, 35, 36, 27, 37, 38, 27,
|
||||
6, 39, 6, 6, 27, 6, 40, 41, 42, 43,
|
||||
24, 24, 25, 24, 24, 26, 27, 28, 29, 24,
|
||||
24, 30, 31, 32, 33, 34, 24, 35, 24, 24,
|
||||
6, 36, 6, 6, 24, 6, 37, 38, 39, 40,
|
||||
|
||||
44, 45, 46, 47, 48, 27, 27, 49, 50, 51,
|
||||
52, 27, 27, 53, 54, 55, 56, 57, 27, 37,
|
||||
58, 27, 59, 6, 6, 6, 1, 60, 60, 60,
|
||||
60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
|
||||
60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
|
||||
60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
|
||||
60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
|
||||
60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
|
||||
60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
|
||||
60, 61, 61, 61, 61, 61, 61, 61, 61, 61,
|
||||
41, 42, 43, 44, 45, 24, 24, 46, 47, 48,
|
||||
49, 24, 24, 50, 51, 52, 53, 54, 24, 35,
|
||||
55, 24, 56, 6, 6, 6, 1, 57, 57, 57,
|
||||
57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
|
||||
57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
|
||||
57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
|
||||
57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
|
||||
57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
|
||||
57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
|
||||
57, 58, 58, 58, 58, 58, 58, 58, 58, 58,
|
||||
|
||||
61, 61, 61, 61, 61, 61, 61, 61, 61, 61,
|
||||
61, 61, 61, 61, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 62, 62, 62, 62, 62, 62, 62,
|
||||
62, 62, 62, 62, 62, 62, 62, 62, 62, 63,
|
||||
63, 63, 63, 63, 63, 63, 63, 1, 1, 1,
|
||||
58, 58, 58, 58, 58, 58, 58, 58, 58, 58,
|
||||
58, 58, 58, 58, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 59, 59, 59, 59, 59, 59, 59,
|
||||
59, 59, 59, 59, 59, 59, 59, 59, 59, 60,
|
||||
60, 60, 60, 60, 60, 60, 60, 1, 1, 1,
|
||||
1, 1, 1, 1, 1
|
||||
} ;
|
||||
|
||||
static yyconst flex_int32_t yy_meta[64] =
|
||||
static yyconst flex_int32_t yy_meta[61] =
|
||||
{ 0,
|
||||
1, 1, 2, 1, 1, 1, 1, 3, 4, 4,
|
||||
4, 1, 5, 5, 5, 1, 4, 5, 5, 5,
|
||||
5, 5, 5, 4, 4, 4, 4, 6, 4, 4,
|
||||
4, 4, 4, 4, 4, 4, 4, 4, 4, 5,
|
||||
5, 5, 5, 5, 5, 4, 4, 4, 6, 4,
|
||||
4, 4, 4, 4, 4, 4, 4, 4, 7, 1,
|
||||
4, 4, 4
|
||||
5, 5, 5, 4, 4, 6, 4, 4, 4, 4,
|
||||
4, 4, 4, 4, 4, 4, 5, 5, 5, 5,
|
||||
5, 5, 4, 4, 4, 6, 4, 4, 4, 4,
|
||||
4, 4, 4, 4, 4, 7, 1, 4, 4, 4
|
||||
} ;
|
||||
|
||||
static yyconst flex_int16_t yy_base[274] =
|
||||
static yyconst flex_int16_t yy_base[246] =
|
||||
{ 0,
|
||||
0, 0, 359, 1375, 62, 1375, 58, 317, 57, 62,
|
||||
94, 342, 133, 177, 30, 42, 57, 132, 118, 50,
|
||||
172, 63, 146, 167, 175, 183, 180, 72, 193, 200,
|
||||
218, 210, 213, 226, 238, 246, 255, 252, 258, 272,
|
||||
271, 265, 160, 91, 1375, 309, 298, 122, 0, 127,
|
||||
0, 313, 245, 0, 1375, 320, 1375, 0, 46, 72,
|
||||
155, 327, 1375, 1375, 0, 0, 1375, 285, 344, 233,
|
||||
226, 224, 304, 335, 323, 329, 338, 332, 365, 416,
|
||||
350, 371, 380, 401, 386, 411, 421, 436, 427, 441,
|
||||
453, 432, 457, 447, 462, 472, 482, 487, 491, 508,
|
||||
0, 0, 327, 1206, 59, 1206, 55, 277, 54, 59,
|
||||
88, 295, 124, 165, 30, 57, 159, 61, 141, 149,
|
||||
154, 174, 64, 166, 179, 191, 184, 199, 205, 212,
|
||||
219, 225, 232, 237, 244, 243, 237, 81, 87, 1206,
|
||||
278, 259, 91, 0, 118, 0, 139, 204, 0, 1206,
|
||||
289, 1206, 0, 240, 66, 72, 296, 1206, 1206, 0,
|
||||
0, 1206, 257, 313, 189, 188, 174, 276, 287, 295,
|
||||
324, 372, 292, 320, 308, 345, 363, 366, 375, 384,
|
||||
379, 393, 410, 405, 413, 423, 418, 438, 443, 450,
|
||||
458, 455, 172, 165, 1206, 197, 143, 196, 114, 274,
|
||||
|
||||
501, 466, 516, 512, 519, 200, 180, 1375, 217, 297,
|
||||
212, 175, 202, 570, 167, 254, 573, 0, 1375, 600,
|
||||
571, 141, 137, 568, 573, 585, 578, 613, 603, 594,
|
||||
598, 632, 623, 629, 657, 648, 638, 664, 669, 674,
|
||||
678, 689, 685, 703, 682, 710, 714, 718, 723, 743,
|
||||
748, 739, 730, 755, 759, 107, 1375, 1375, 331, 152,
|
||||
1375, 124, 199, 255, 1375, 89, 769, 773, 780, 784,
|
||||
787, 790, 794, 799, 820, 824, 827, 830, 837, 833,
|
||||
840, 868, 886, 889, 871, 874, 899, 878, 905, 914,
|
||||
917, 920, 924, 1375, 137, 1375, 126, 1375, 78, 1375,
|
||||
506, 156, 311, 521, 0, 1206, 528, 346, 140, 126,
|
||||
521, 528, 517, 464, 524, 535, 554, 542, 549, 567,
|
||||
579, 570, 574, 561, 582, 607, 599, 610, 613, 624,
|
||||
616, 628, 644, 649, 124, 1206, 1206, 180, 159, 1206,
|
||||
54, 230, 236, 1206, 101, 661, 664, 655, 595, 669,
|
||||
682, 674, 689, 699, 695, 702, 710, 715, 720, 729,
|
||||
740, 735, 746, 750, 755, 760, 775, 765, 1206, 133,
|
||||
1206, 128, 1206, 65, 1206, 785, 790, 802, 794, 805,
|
||||
811, 821, 815, 831, 841, 860, 850, 857, 866, 869,
|
||||
63, 878, 887, 894, 897, 929, 903, 914, 922, 932,
|
||||
|
||||
932, 951, 945, 962, 970, 957, 976, 965, 990, 983,
|
||||
995, 1003, 1011, 1020, 1015, 1023, 1028, 75, 1049, 1031,
|
||||
1061, 1056, 1064, 1074, 1099, 1081, 1069, 1102, 1094, 1112,
|
||||
1109, 59, 1115, 1129, 1140, 1147, 248, 1159, 1165, 1154,
|
||||
1150, 1175, 52, 1193, 1179, 0, 290, 1186, 1196, 1200,
|
||||
1207, 1213, 1375, 1227, 1232, 1248, 1238, 1257, 1263, 1375,
|
||||
1266, 1375, 1375, 1329, 1336, 1340, 1346, 1353, 1356, 85,
|
||||
1360, 1363, 1368
|
||||
935, 947, 950, 35, 968, 964, 975, 943, 120, 993,
|
||||
996, 989, 1000, 1003, 25, 1009, 1028, 0, 122, 1021,
|
||||
1035, 1041, 1038, 1054, 1206, 1071, 1067, 1075, 1081, 1088,
|
||||
1092, 1206, 1100, 1206, 1206, 1160, 1167, 1171, 1177, 1184,
|
||||
1187, 66, 1191, 1194, 1199
|
||||
} ;
|
||||
|
||||
static yyconst flex_int16_t yy_def[274] =
|
||||
static yyconst flex_int16_t yy_def[246] =
|
||||
{ 0,
|
||||
263, 1, 263, 263, 263, 263, 264, 265, 263, 263,
|
||||
263, 263, 263, 263, 266, 266, 266, 266, 266, 266,
|
||||
266, 266, 266, 266, 266, 266, 266, 263, 266, 266,
|
||||
266, 266, 266, 266, 266, 266, 266, 266, 266, 263,
|
||||
263, 263, 263, 264, 263, 264, 263, 267, 11, 14,
|
||||
14, 263, 263, 11, 263, 263, 263, 268, 13, 269,
|
||||
269, 269, 263, 263, 270, 14, 263, 266, 263, 263,
|
||||
263, 263, 266, 266, 266, 266, 266, 266, 266, 266,
|
||||
266, 266, 266, 266, 266, 266, 266, 266, 266, 266,
|
||||
266, 266, 266, 266, 266, 266, 266, 266, 266, 266,
|
||||
235, 1, 235, 235, 235, 235, 236, 237, 235, 235,
|
||||
235, 235, 235, 235, 238, 238, 238, 238, 238, 238,
|
||||
238, 238, 235, 238, 238, 238, 238, 238, 238, 238,
|
||||
238, 238, 238, 238, 235, 235, 235, 235, 236, 235,
|
||||
236, 235, 239, 11, 14, 14, 235, 235, 11, 235,
|
||||
235, 235, 240, 13, 241, 241, 241, 235, 235, 242,
|
||||
14, 235, 238, 235, 235, 235, 235, 238, 238, 238,
|
||||
238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
|
||||
238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
|
||||
238, 238, 235, 235, 235, 235, 235, 243, 45, 235,
|
||||
|
||||
266, 266, 266, 266, 266, 263, 263, 263, 263, 263,
|
||||
271, 50, 263, 263, 263, 263, 263, 268, 263, 62,
|
||||
270, 263, 263, 266, 266, 266, 266, 266, 266, 266,
|
||||
266, 266, 266, 266, 266, 266, 266, 266, 266, 266,
|
||||
266, 266, 266, 266, 266, 266, 266, 266, 266, 266,
|
||||
266, 266, 266, 266, 266, 263, 263, 263, 263, 272,
|
||||
263, 263, 269, 269, 263, 263, 266, 266, 266, 266,
|
||||
266, 266, 266, 266, 266, 266, 266, 266, 266, 266,
|
||||
266, 266, 266, 266, 266, 266, 266, 266, 266, 266,
|
||||
266, 266, 266, 263, 263, 263, 263, 263, 263, 263,
|
||||
235, 235, 235, 235, 240, 235, 57, 242, 235, 235,
|
||||
238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
|
||||
238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
|
||||
238, 238, 238, 238, 235, 235, 235, 235, 244, 235,
|
||||
235, 241, 241, 235, 235, 238, 238, 238, 238, 238,
|
||||
238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
|
||||
238, 238, 238, 238, 238, 238, 238, 238, 235, 235,
|
||||
235, 235, 235, 235, 235, 238, 238, 238, 238, 238,
|
||||
238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
|
||||
235, 238, 238, 238, 238, 238, 238, 238, 238, 238,
|
||||
|
||||
266, 266, 266, 266, 266, 266, 266, 266, 266, 266,
|
||||
266, 266, 266, 266, 266, 266, 266, 263, 266, 266,
|
||||
266, 266, 266, 266, 266, 266, 266, 266, 266, 266,
|
||||
266, 263, 266, 266, 266, 266, 273, 266, 266, 266,
|
||||
266, 266, 263, 266, 266, 273, 273, 266, 266, 266,
|
||||
266, 266, 263, 266, 266, 266, 266, 266, 266, 263,
|
||||
266, 263, 0, 263, 263, 263, 263, 263, 263, 263,
|
||||
263, 263, 263
|
||||
238, 238, 238, 235, 238, 238, 238, 238, 245, 238,
|
||||
238, 238, 238, 238, 235, 238, 238, 245, 245, 238,
|
||||
238, 238, 238, 238, 235, 238, 238, 238, 238, 238,
|
||||
238, 235, 238, 235, 0, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235
|
||||
} ;
|
||||
|
||||
static yyconst flex_int16_t yy_nxt[1439] =
|
||||
static yyconst flex_int16_t yy_nxt[1267] =
|
||||
{ 0,
|
||||
4, 5, 6, 5, 5, 4, 7, 8, 9, 10,
|
||||
11, 12, 13, 14, 14, 4, 4, 15, 16, 17,
|
||||
18, 19, 20, 15, 15, 21, 15, 22, 15, 23,
|
||||
15, 24, 25, 15, 26, 27, 15, 15, 28, 15,
|
||||
29, 30, 31, 19, 32, 15, 15, 33, 34, 15,
|
||||
35, 15, 36, 37, 15, 38, 39, 15, 4, 4,
|
||||
40, 41, 42, 43, 45, 43, 43, 49, 69, 50,
|
||||
51, 51, 49, 119, 50, 51, 51, 81, 52, 73,
|
||||
69, 74, 263, 52, 92, 92, 92, 53, 69, 121,
|
||||
70, 71, 72, 85, 119, 69, 46, 45, 82, 119,
|
||||
11, 12, 13, 14, 14, 4, 4, 15, 15, 15,
|
||||
16, 17, 18, 15, 19, 15, 15, 20, 15, 15,
|
||||
15, 15, 21, 22, 15, 23, 15, 24, 25, 26,
|
||||
17, 27, 15, 15, 28, 29, 15, 30, 15, 31,
|
||||
32, 15, 33, 34, 15, 4, 4, 35, 36, 37,
|
||||
38, 40, 38, 38, 44, 64, 45, 46, 46, 44,
|
||||
108, 45, 46, 46, 68, 47, 79, 79, 79, 225,
|
||||
47, 69, 38, 48, 38, 38, 215, 65, 66, 67,
|
||||
41, 106, 64, 40, 47, 173, 64, 106, 174, 47,
|
||||
|
||||
52, 69, 70, 71, 72, 52, 54, 54, 54, 253,
|
||||
70, 71, 72, 243, 55, 56, 57, 70, 71, 72,
|
||||
119, 55, 232, 70, 71, 72, 79, 79, 218, 46,
|
||||
80, 80, 80, 196, 110, 110, 55, 56, 57, 112,
|
||||
112, 112, 55, 49, 194, 59, 59, 59, 68, 75,
|
||||
60, 61, 60, 60, 62, 60, 69, 76, 111, 196,
|
||||
63, 43, 77, 43, 43, 64, 92, 86, 198, 65,
|
||||
69, 199, 60, 61, 60, 60, 62, 60, 70, 71,
|
||||
72, 63, 119, 78, 69, 87, 64, 49, 88, 66,
|
||||
66, 66, 70, 71, 72, 67, 166, 91, 52, 89,
|
||||
49, 49, 49, 97, 97, 70, 73, 204, 50, 51,
|
||||
52, 106, 191, 50, 65, 66, 67, 106, 65, 66,
|
||||
67, 219, 41, 219, 219, 98, 219, 50, 51, 52,
|
||||
99, 99, 99, 50, 44, 171, 54, 54, 54, 235,
|
||||
169, 55, 56, 55, 55, 57, 55, 100, 100, 58,
|
||||
137, 101, 101, 101, 59, 138, 138, 63, 60, 235,
|
||||
55, 56, 55, 55, 57, 55, 171, 71, 71, 58,
|
||||
75, 72, 72, 72, 59, 44, 64, 61, 61, 61,
|
||||
79, 77, 145, 62, 64, 76, 47, 169, 74, 64,
|
||||
58, 78, 170, 170, 64, 59, 63, 141, 65, 66,
|
||||
|
||||
68, 83, 263, 119, 63, 69, 70, 71, 72, 64,
|
||||
69, 162, 90, 69, 114, 114, 114, 67, 69, 157,
|
||||
52, 69, 84, 263, 157, 63, 119, 70, 71, 72,
|
||||
64, 69, 70, 71, 72, 70, 71, 72, 69, 156,
|
||||
70, 71, 72, 70, 71, 72, 94, 119, 69, 247,
|
||||
93, 69, 247, 70, 71, 72, 69, 95, 98, 92,
|
||||
70, 71, 72, 99, 69, 96, 117, 117, 117, 97,
|
||||
70, 71, 72, 70, 71, 72, 69, 100, 70, 71,
|
||||
72, 101, 119, 123, 69, 122, 70, 71, 72, 102,
|
||||
69, 247, 68, 69, 247, 115, 69, 105, 70, 71,
|
||||
67, 64, 62, 136, 136, 47, 65, 66, 67, 64,
|
||||
58, 65, 66, 67, 64, 59, 65, 66, 67, 64,
|
||||
80, 135, 81, 65, 66, 67, 64, 82, 79, 85,
|
||||
110, 65, 66, 67, 64, 83, 65, 66, 67, 84,
|
||||
64, 65, 66, 67, 109, 63, 86, 64, 65, 66,
|
||||
67, 102, 88, 87, 64, 106, 65, 66, 67, 89,
|
||||
64, 106, 65, 66, 67, 106, 95, 64, 90, 65,
|
||||
66, 67, 64, 92, 235, 106, 65, 66, 67, 91,
|
||||
235, 106, 65, 66, 67, 106, 101, 101, 101, 65,
|
||||
66, 67, 64, 94, 65, 66, 67, 103, 103, 93,
|
||||
|
||||
72, 103, 104, 119, 158, 108, 70, 71, 72, 159,
|
||||
159, 263, 70, 71, 72, 70, 71, 72, 70, 71,
|
||||
72, 113, 113, 69, 107, 114, 114, 114, 116, 116,
|
||||
106, 92, 117, 117, 117, 113, 113, 124, 194, 120,
|
||||
120, 120, 69, 195, 195, 70, 71, 72, 68, 68,
|
||||
68, 68, 125, 58, 119, 48, 126, 127, 263, 68,
|
||||
263, 69, 263, 263, 70, 71, 72, 69, 263, 263,
|
||||
69, 263, 128, 69, 263, 119, 69, 80, 80, 80,
|
||||
132, 263, 68, 70, 71, 72, 263, 129, 69, 70,
|
||||
71, 72, 70, 71, 72, 70, 71, 72, 70, 71,
|
||||
79, 104, 104, 104, 100, 100, 53, 111, 107, 107,
|
||||
107, 64, 43, 112, 65, 66, 67, 63, 63, 63,
|
||||
63, 106, 64, 104, 104, 104, 235, 64, 63, 235,
|
||||
64, 235, 235, 65, 66, 67, 72, 72, 72, 118,
|
||||
116, 106, 235, 64, 65, 66, 67, 113, 63, 65,
|
||||
66, 67, 65, 66, 67, 64, 235, 235, 235, 64,
|
||||
235, 117, 235, 235, 235, 65, 66, 67, 63, 235,
|
||||
235, 106, 119, 235, 235, 235, 59, 65, 66, 67,
|
||||
64, 65, 66, 67, 72, 72, 72, 235, 120, 235,
|
||||
235, 106, 114, 235, 115, 121, 59, 114, 64, 235,
|
||||
|
||||
72, 263, 68, 69, 263, 263, 263, 263, 263, 69,
|
||||
70, 71, 72, 134, 263, 136, 263, 263, 69, 263,
|
||||
263, 263, 133, 263, 69, 70, 71, 72, 80, 80,
|
||||
80, 70, 71, 72, 263, 263, 130, 263, 131, 69,
|
||||
70, 71, 72, 130, 137, 135, 70, 71, 72, 69,
|
||||
138, 263, 263, 139, 69, 263, 263, 140, 130, 69,
|
||||
131, 70, 71, 72, 130, 69, 263, 263, 141, 263,
|
||||
69, 70, 71, 72, 69, 263, 70, 71, 72, 69,
|
||||
263, 70, 71, 72, 142, 69, 144, 70, 71, 72,
|
||||
263, 69, 70, 71, 72, 69, 70, 71, 72, 263,
|
||||
235, 64, 65, 66, 67, 235, 235, 64, 235, 235,
|
||||
64, 114, 235, 115, 64, 123, 235, 114, 235, 64,
|
||||
65, 66, 67, 65, 66, 67, 235, 235, 64, 65,
|
||||
66, 67, 65, 66, 67, 122, 65, 66, 67, 235,
|
||||
64, 65, 66, 67, 124, 64, 235, 235, 64, 235,
|
||||
65, 66, 67, 64, 235, 235, 125, 126, 64, 235,
|
||||
235, 127, 65, 66, 67, 129, 235, 65, 66, 67,
|
||||
65, 66, 67, 64, 128, 65, 66, 67, 64, 131,
|
||||
65, 66, 67, 235, 235, 64, 235, 235, 235, 130,
|
||||
64, 235, 235, 64, 235, 65, 66, 67, 132, 64,
|
||||
|
||||
69, 70, 71, 72, 69, 152, 263, 70, 71, 72,
|
||||
69, 143, 263, 70, 71, 72, 145, 70, 71, 72,
|
||||
69, 146, 70, 71, 72, 69, 70, 71, 72, 69,
|
||||
263, 263, 70, 71, 72, 263, 263, 147, 148, 69,
|
||||
263, 263, 70, 71, 72, 149, 69, 70, 71, 72,
|
||||
69, 70, 71, 72, 69, 151, 263, 69, 150, 263,
|
||||
154, 70, 71, 72, 263, 263, 263, 153, 70, 71,
|
||||
72, 155, 70, 71, 72, 263, 70, 71, 72, 70,
|
||||
71, 72, 114, 114, 114, 117, 117, 117, 263, 167,
|
||||
161, 263, 57, 55, 263, 57, 263, 161, 119, 170,
|
||||
65, 66, 67, 133, 134, 235, 235, 65, 66, 67,
|
||||
235, 235, 65, 66, 67, 65, 66, 67, 101, 101,
|
||||
101, 65, 66, 67, 235, 235, 140, 235, 52, 235,
|
||||
235, 140, 235, 104, 104, 104, 235, 235, 146, 235,
|
||||
235, 50, 235, 52, 235, 140, 50, 52, 142, 147,
|
||||
143, 140, 64, 144, 148, 235, 64, 235, 235, 64,
|
||||
50, 152, 52, 64, 235, 235, 50, 142, 235, 143,
|
||||
64, 149, 235, 144, 65, 66, 67, 64, 65, 66,
|
||||
67, 65, 66, 67, 64, 65, 66, 67, 235, 64,
|
||||
235, 153, 65, 66, 67, 150, 64, 157, 151, 65,
|
||||
|
||||
55, 263, 169, 64, 168, 263, 69, 263, 263, 263,
|
||||
263, 69, 161, 263, 57, 55, 69, 57, 161, 119,
|
||||
163, 55, 164, 69, 64, 263, 263, 165, 70, 71,
|
||||
72, 171, 69, 70, 71, 72, 69, 263, 70, 71,
|
||||
72, 69, 163, 172, 164, 70, 71, 72, 165, 173,
|
||||
175, 69, 263, 263, 70, 71, 72, 179, 70, 71,
|
||||
72, 69, 174, 70, 71, 72, 263, 69, 263, 263,
|
||||
69, 178, 263, 70, 71, 72, 69, 263, 263, 263,
|
||||
263, 263, 263, 70, 71, 72, 69, 263, 263, 70,
|
||||
71, 72, 70, 71, 72, 69, 180, 263, 70, 71,
|
||||
66, 67, 64, 154, 235, 64, 65, 66, 67, 64,
|
||||
155, 65, 66, 67, 64, 235, 235, 64, 65, 66,
|
||||
67, 235, 158, 156, 65, 66, 67, 65, 66, 67,
|
||||
64, 65, 66, 67, 64, 160, 65, 66, 67, 65,
|
||||
66, 67, 64, 163, 159, 64, 178, 235, 64, 235,
|
||||
161, 64, 65, 66, 67, 162, 65, 66, 67, 64,
|
||||
235, 165, 164, 64, 65, 66, 67, 65, 66, 67,
|
||||
65, 66, 67, 65, 66, 67, 175, 166, 235, 64,
|
||||
235, 65, 66, 67, 64, 65, 66, 67, 167, 235,
|
||||
64, 176, 235, 168, 180, 235, 64, 235, 235, 64,
|
||||
|
||||
72, 176, 69, 182, 177, 181, 263, 69, 70, 71,
|
||||
72, 263, 69, 263, 183, 263, 69, 70, 71, 72,
|
||||
69, 184, 263, 69, 70, 71, 72, 69, 167, 70,
|
||||
71, 72, 263, 263, 70, 71, 72, 263, 70, 71,
|
||||
72, 69, 70, 71, 72, 70, 71, 72, 69, 70,
|
||||
71, 72, 69, 185, 186, 168, 69, 187, 263, 263,
|
||||
263, 69, 263, 70, 71, 72, 188, 189, 69, 263,
|
||||
70, 71, 72, 263, 70, 71, 72, 69, 70, 71,
|
||||
72, 69, 191, 70, 71, 72, 69, 180, 178, 190,
|
||||
70, 71, 72, 69, 263, 200, 263, 69, 263, 70,
|
||||
177, 65, 66, 67, 64, 235, 65, 66, 67, 64,
|
||||
235, 235, 65, 66, 67, 181, 182, 64, 65, 66,
|
||||
67, 65, 66, 67, 64, 175, 65, 66, 67, 179,
|
||||
64, 65, 66, 67, 64, 235, 235, 64, 235, 65,
|
||||
66, 67, 235, 235, 235, 64, 65, 66, 67, 235,
|
||||
64, 235, 65, 66, 67, 64, 65, 66, 67, 65,
|
||||
66, 67, 183, 235, 64, 184, 186, 65, 66, 67,
|
||||
64, 235, 65, 66, 67, 64, 235, 65, 66, 67,
|
||||
165, 64, 185, 235, 235, 64, 65, 66, 67, 187,
|
||||
64, 235, 65, 66, 67, 64, 235, 65, 66, 67,
|
||||
|
||||
71, 72, 192, 70, 71, 72, 193, 69, 70, 71,
|
||||
72, 69, 263, 201, 202, 70, 71, 72, 69, 70,
|
||||
71, 72, 69, 263, 263, 69, 263, 180, 69, 70,
|
||||
71, 72, 69, 70, 71, 72, 263, 69, 203, 263,
|
||||
70, 71, 72, 205, 70, 71, 72, 70, 71, 72,
|
||||
70, 71, 72, 204, 70, 71, 72, 207, 69, 70,
|
||||
71, 72, 69, 263, 263, 69, 263, 263, 69, 263,
|
||||
263, 69, 263, 208, 263, 69, 263, 206, 69, 263,
|
||||
70, 71, 72, 263, 70, 71, 72, 70, 71, 72,
|
||||
70, 71, 72, 70, 71, 72, 209, 70, 71, 72,
|
||||
64, 190, 235, 65, 66, 67, 235, 65, 66, 67,
|
||||
64, 188, 65, 66, 67, 192, 235, 65, 66, 67,
|
||||
64, 189, 65, 66, 67, 64, 194, 196, 235, 64,
|
||||
193, 235, 65, 66, 67, 197, 235, 64, 195, 198,
|
||||
64, 235, 65, 66, 67, 235, 64, 65, 66, 67,
|
||||
64, 65, 66, 67, 235, 235, 64, 235, 235, 65,
|
||||
66, 67, 65, 66, 67, 199, 64, 235, 65, 66,
|
||||
67, 200, 65, 66, 67, 235, 64, 235, 65, 66,
|
||||
67, 201, 196, 235, 235, 64, 235, 235, 65, 66,
|
||||
67, 196, 64, 235, 235, 64, 235, 235, 65, 66,
|
||||
|
||||
70, 71, 72, 210, 200, 263, 69, 263, 263, 69,
|
||||
263, 263, 69, 263, 263, 263, 69, 263, 263, 263,
|
||||
263, 211, 212, 213, 69, 214, 263, 69, 70, 71,
|
||||
72, 70, 71, 72, 70, 71, 72, 69, 70, 71,
|
||||
72, 263, 263, 69, 263, 263, 70, 71, 72, 70,
|
||||
71, 72, 69, 180, 263, 69, 215, 263, 69, 70,
|
||||
71, 72, 69, 217, 219, 70, 71, 72, 263, 216,
|
||||
69, 208, 220, 263, 70, 71, 72, 70, 71, 72,
|
||||
70, 71, 72, 69, 70, 71, 72, 222, 221, 69,
|
||||
263, 223, 70, 71, 72, 69, 263, 263, 225, 263,
|
||||
67, 64, 205, 235, 64, 235, 203, 65, 66, 67,
|
||||
202, 206, 235, 64, 65, 66, 67, 65, 66, 67,
|
||||
235, 235, 64, 65, 66, 67, 65, 66, 67, 64,
|
||||
209, 235, 64, 209, 210, 65, 66, 67, 64, 211,
|
||||
235, 207, 235, 235, 65, 66, 67, 235, 208, 64,
|
||||
235, 65, 66, 67, 65, 66, 67, 64, 235, 235,
|
||||
65, 66, 67, 235, 64, 235, 212, 64, 235, 235,
|
||||
64, 65, 66, 67, 235, 235, 235, 235, 64, 65,
|
||||
66, 67, 64, 235, 162, 64, 65, 66, 67, 65,
|
||||
66, 67, 65, 66, 67, 214, 216, 119, 213, 64,
|
||||
|
||||
69, 227, 263, 69, 224, 70, 71, 72, 69, 263,
|
||||
263, 70, 71, 72, 69, 226, 263, 70, 71, 72,
|
||||
263, 69, 70, 71, 72, 70, 71, 72, 69, 263,
|
||||
70, 71, 72, 69, 263, 263, 70, 71, 72, 263,
|
||||
263, 69, 225, 70, 71, 72, 220, 263, 228, 69,
|
||||
70, 71, 72, 69, 229, 70, 71, 72, 69, 225,
|
||||
263, 69, 263, 70, 71, 72, 69, 263, 231, 69,
|
||||
230, 70, 71, 72, 233, 70, 71, 72, 263, 263,
|
||||
70, 71, 72, 70, 71, 72, 234, 69, 70, 71,
|
||||
72, 70, 71, 72, 69, 178, 239, 263, 263, 69,
|
||||
65, 66, 67, 64, 65, 66, 67, 65, 66, 67,
|
||||
64, 217, 235, 235, 220, 235, 150, 221, 235, 235,
|
||||
235, 65, 66, 67, 64, 65, 66, 67, 64, 235,
|
||||
235, 64, 65, 66, 67, 64, 226, 222, 64, 235,
|
||||
223, 227, 235, 224, 64, 235, 65, 66, 67, 235,
|
||||
65, 66, 67, 65, 66, 67, 64, 65, 66, 67,
|
||||
65, 66, 67, 64, 235, 228, 65, 66, 67, 119,
|
||||
64, 235, 235, 64, 235, 235, 64, 227, 65, 66,
|
||||
67, 235, 235, 235, 235, 65, 66, 67, 229, 64,
|
||||
232, 235, 65, 66, 67, 65, 66, 67, 65, 66,
|
||||
|
||||
237, 263, 69, 237, 263, 263, 235, 69, 263, 70,
|
||||
71, 72, 69, 263, 238, 263, 70, 71, 72, 69,
|
||||
263, 70, 71, 72, 70, 71, 72, 263, 236, 70,
|
||||
71, 72, 69, 263, 70, 71, 72, 69, 263, 263,
|
||||
69, 70, 71, 72, 263, 244, 178, 69, 263, 240,
|
||||
69, 263, 263, 69, 70, 71, 72, 242, 263, 70,
|
||||
71, 72, 70, 71, 72, 263, 241, 69, 263, 70,
|
||||
71, 72, 70, 71, 72, 70, 71, 72, 69, 245,
|
||||
248, 263, 263, 263, 176, 69, 249, 263, 69, 70,
|
||||
71, 72, 69, 251, 263, 263, 263, 69, 263, 263,
|
||||
67, 231, 64, 232, 230, 235, 64, 234, 235, 235,
|
||||
64, 65, 66, 67, 235, 234, 64, 235, 235, 235,
|
||||
235, 235, 235, 64, 65, 66, 67, 64, 65, 66,
|
||||
67, 233, 65, 66, 67, 64, 235, 235, 65, 66,
|
||||
67, 235, 235, 235, 235, 65, 66, 67, 235, 65,
|
||||
66, 67, 235, 235, 235, 235, 235, 65, 66, 67,
|
||||
39, 39, 39, 39, 39, 39, 39, 42, 42, 42,
|
||||
42, 42, 42, 42, 63, 63, 63, 96, 235, 96,
|
||||
96, 96, 96, 96, 105, 235, 105, 105, 105, 105,
|
||||
105, 55, 55, 139, 235, 139, 172, 235, 172, 218,
|
||||
|
||||
70, 71, 72, 69, 138, 250, 255, 70, 71, 72,
|
||||
70, 71, 72, 69, 70, 71, 72, 69, 252, 70,
|
||||
71, 72, 254, 138, 69, 70, 71, 72, 256, 263,
|
||||
263, 69, 263, 263, 69, 70, 71, 72, 69, 70,
|
||||
71, 72, 263, 263, 263, 69, 70, 71, 72, 255,
|
||||
257, 69, 263, 70, 71, 72, 70, 71, 72, 259,
|
||||
70, 71, 72, 260, 263, 69, 258, 70, 71, 72,
|
||||
69, 263, 260, 70, 71, 72, 69, 263, 262, 263,
|
||||
263, 262, 263, 263, 263, 263, 69, 70, 71, 72,
|
||||
263, 261, 70, 71, 72, 69, 263, 263, 70, 71,
|
||||
|
||||
72, 69, 263, 263, 69, 263, 263, 263, 70, 71,
|
||||
72, 263, 263, 263, 263, 263, 263, 70, 71, 72,
|
||||
263, 263, 263, 70, 71, 72, 70, 71, 72, 44,
|
||||
44, 44, 44, 44, 44, 44, 47, 47, 47, 47,
|
||||
47, 47, 47, 68, 68, 68, 109, 263, 109, 109,
|
||||
109, 109, 109, 118, 263, 118, 118, 118, 118, 118,
|
||||
60, 60, 160, 263, 160, 197, 263, 197, 246, 246,
|
||||
246, 246, 246, 246, 3, 263, 263, 263, 263, 263,
|
||||
263, 263, 263, 263, 263, 263, 263, 263, 263, 263,
|
||||
263, 263, 263, 263, 263, 263, 263, 263, 263, 263,
|
||||
|
||||
263, 263, 263, 263, 263, 263, 263, 263, 263, 263,
|
||||
263, 263, 263, 263, 263, 263, 263, 263, 263, 263,
|
||||
263, 263, 263, 263, 263, 263, 263, 263, 263, 263,
|
||||
263, 263, 263, 263, 263, 263, 263, 263
|
||||
218, 218, 218, 218, 218, 3, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235
|
||||
} ;
|
||||
|
||||
static yyconst flex_int16_t yy_chk[1439] =
|
||||
static yyconst flex_int16_t yy_chk[1267] =
|
||||
{ 0,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||
@ -701,158 +672,139 @@ static yyconst flex_int16_t yy_chk[1439] =
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 5, 7, 5, 5, 9, 15, 9,
|
||||
9, 9, 10, 59, 10, 10, 10, 20, 9, 16,
|
||||
16, 17, 59, 10, 28, 28, 28, 10, 20, 270,
|
||||
15, 15, 15, 22, 59, 17, 7, 44, 20, 60,
|
||||
5, 7, 5, 5, 9, 15, 9, 9, 9, 10,
|
||||
242, 10, 10, 10, 16, 9, 23, 23, 23, 215,
|
||||
10, 16, 38, 10, 38, 38, 204, 15, 15, 15,
|
||||
7, 55, 16, 39, 9, 141, 18, 56, 141, 10,
|
||||
|
||||
9, 22, 16, 16, 16, 10, 11, 11, 11, 243,
|
||||
20, 20, 20, 232, 11, 11, 11, 17, 17, 17,
|
||||
60, 11, 218, 22, 22, 22, 19, 19, 199, 44,
|
||||
19, 19, 19, 197, 48, 48, 11, 11, 11, 50,
|
||||
50, 50, 11, 13, 195, 13, 13, 13, 166, 18,
|
||||
13, 13, 13, 13, 13, 13, 19, 18, 48, 160,
|
||||
13, 43, 18, 43, 43, 13, 156, 23, 162, 13,
|
||||
18, 162, 13, 13, 13, 13, 13, 13, 19, 19,
|
||||
19, 13, 61, 18, 23, 23, 13, 14, 24, 14,
|
||||
14, 14, 18, 18, 18, 14, 123, 27, 14, 25,
|
||||
11, 11, 11, 43, 43, 16, 18, 191, 11, 11,
|
||||
11, 55, 174, 11, 16, 16, 16, 56, 18, 18,
|
||||
18, 209, 39, 219, 209, 43, 219, 11, 11, 11,
|
||||
45, 45, 45, 11, 13, 172, 13, 13, 13, 99,
|
||||
170, 13, 13, 13, 13, 13, 13, 47, 47, 13,
|
||||
97, 47, 47, 47, 13, 97, 97, 145, 13, 99,
|
||||
13, 13, 13, 13, 13, 13, 139, 17, 17, 13,
|
||||
20, 17, 17, 17, 13, 14, 19, 14, 14, 14,
|
||||
135, 21, 110, 14, 20, 20, 14, 138, 19, 21,
|
||||
14, 22, 138, 138, 17, 14, 109, 102, 19, 19,
|
||||
|
||||
122, 21, 112, 61, 14, 24, 23, 23, 23, 14,
|
||||
21, 115, 26, 25, 113, 113, 113, 14, 27, 111,
|
||||
14, 26, 21, 112, 109, 14, 163, 24, 24, 24,
|
||||
14, 29, 21, 21, 21, 25, 25, 25, 30, 107,
|
||||
27, 27, 27, 26, 26, 26, 30, 163, 32, 237,
|
||||
29, 33, 237, 29, 29, 29, 31, 31, 32, 106,
|
||||
30, 30, 30, 33, 34, 31, 116, 116, 116, 31,
|
||||
32, 32, 32, 33, 33, 33, 35, 34, 31, 31,
|
||||
31, 35, 164, 72, 36, 71, 34, 34, 34, 36,
|
||||
38, 247, 70, 37, 247, 53, 39, 39, 35, 35,
|
||||
19, 24, 14, 98, 96, 14, 20, 20, 20, 22,
|
||||
14, 21, 21, 21, 25, 14, 17, 17, 17, 27,
|
||||
24, 94, 25, 24, 24, 24, 26, 26, 93, 27,
|
||||
67, 22, 22, 22, 28, 26, 25, 25, 25, 26,
|
||||
29, 27, 27, 27, 66, 65, 28, 30, 26, 26,
|
||||
26, 48, 30, 29, 31, 142, 28, 28, 28, 31,
|
||||
32, 143, 29, 29, 29, 54, 42, 33, 32, 30,
|
||||
30, 30, 34, 34, 54, 142, 31, 31, 31, 33,
|
||||
41, 143, 32, 32, 32, 54, 100, 100, 100, 33,
|
||||
33, 33, 63, 37, 34, 34, 34, 51, 51, 36,
|
||||
|
||||
35, 37, 38, 164, 110, 47, 36, 36, 36, 110,
|
||||
110, 46, 38, 38, 38, 37, 37, 37, 39, 39,
|
||||
39, 52, 52, 68, 42, 52, 52, 52, 56, 56,
|
||||
41, 40, 56, 56, 56, 62, 62, 73, 159, 62,
|
||||
62, 62, 73, 159, 159, 68, 68, 68, 69, 69,
|
||||
69, 69, 74, 12, 62, 8, 75, 76, 3, 69,
|
||||
0, 75, 0, 0, 73, 73, 73, 76, 0, 0,
|
||||
78, 0, 77, 74, 0, 62, 77, 79, 79, 79,
|
||||
81, 0, 69, 75, 75, 75, 0, 78, 81, 76,
|
||||
76, 76, 78, 78, 78, 74, 74, 74, 77, 77,
|
||||
35, 51, 51, 51, 57, 57, 12, 68, 57, 57,
|
||||
57, 68, 8, 69, 63, 63, 63, 64, 64, 64,
|
||||
64, 57, 69, 103, 103, 103, 3, 73, 64, 0,
|
||||
70, 0, 0, 68, 68, 68, 71, 71, 71, 75,
|
||||
73, 57, 0, 75, 69, 69, 69, 70, 64, 73,
|
||||
73, 73, 70, 70, 70, 74, 0, 0, 0, 71,
|
||||
0, 74, 0, 0, 0, 75, 75, 75, 64, 0,
|
||||
0, 108, 76, 0, 0, 0, 108, 74, 74, 74,
|
||||
76, 71, 71, 71, 72, 72, 72, 0, 77, 0,
|
||||
0, 108, 72, 0, 72, 78, 108, 72, 77, 0,
|
||||
|
||||
77, 0, 69, 79, 0, 0, 0, 0, 0, 82,
|
||||
81, 81, 81, 83, 0, 85, 0, 0, 83, 0,
|
||||
0, 0, 82, 0, 85, 79, 79, 79, 80, 80,
|
||||
80, 82, 82, 82, 0, 0, 80, 0, 80, 84,
|
||||
83, 83, 83, 80, 86, 84, 85, 85, 85, 86,
|
||||
87, 0, 0, 88, 80, 0, 0, 89, 80, 87,
|
||||
80, 84, 84, 84, 80, 89, 0, 0, 90, 0,
|
||||
92, 86, 86, 86, 88, 0, 80, 80, 80, 90,
|
||||
0, 87, 87, 87, 91, 94, 94, 89, 89, 89,
|
||||
0, 91, 92, 92, 92, 93, 88, 88, 88, 0,
|
||||
0, 78, 76, 76, 76, 0, 0, 72, 0, 0,
|
||||
79, 72, 0, 72, 81, 81, 0, 72, 0, 80,
|
||||
77, 77, 77, 78, 78, 78, 0, 0, 82, 72,
|
||||
72, 72, 79, 79, 79, 80, 81, 81, 81, 0,
|
||||
84, 80, 80, 80, 82, 83, 0, 0, 85, 0,
|
||||
82, 82, 82, 87, 0, 0, 83, 84, 86, 0,
|
||||
0, 85, 84, 84, 84, 87, 0, 83, 83, 83,
|
||||
85, 85, 85, 88, 86, 87, 87, 87, 89, 89,
|
||||
86, 86, 86, 0, 0, 90, 0, 0, 0, 88,
|
||||
92, 0, 0, 91, 0, 88, 88, 88, 90, 114,
|
||||
|
||||
95, 90, 90, 90, 102, 102, 0, 94, 94, 94,
|
||||
96, 93, 0, 91, 91, 91, 95, 93, 93, 93,
|
||||
97, 96, 95, 95, 95, 98, 102, 102, 102, 99,
|
||||
0, 0, 96, 96, 96, 0, 0, 97, 98, 101,
|
||||
0, 0, 97, 97, 97, 99, 100, 98, 98, 98,
|
||||
104, 99, 99, 99, 103, 101, 0, 105, 100, 0,
|
||||
104, 101, 101, 101, 0, 0, 0, 103, 100, 100,
|
||||
100, 105, 104, 104, 104, 0, 103, 103, 103, 105,
|
||||
105, 105, 114, 114, 114, 117, 117, 117, 0, 124,
|
||||
114, 0, 114, 117, 0, 117, 0, 114, 121, 127,
|
||||
89, 89, 89, 91, 92, 0, 0, 90, 90, 90,
|
||||
0, 0, 92, 92, 92, 91, 91, 91, 101, 101,
|
||||
101, 114, 114, 114, 0, 0, 101, 0, 101, 0,
|
||||
0, 101, 0, 104, 104, 104, 107, 107, 111, 0,
|
||||
0, 104, 0, 104, 0, 101, 104, 101, 107, 112,
|
||||
107, 101, 113, 107, 113, 0, 111, 0, 0, 115,
|
||||
104, 118, 104, 112, 0, 0, 104, 107, 0, 107,
|
||||
116, 116, 0, 107, 113, 113, 113, 118, 111, 111,
|
||||
111, 115, 115, 115, 119, 112, 112, 112, 0, 117,
|
||||
0, 120, 116, 116, 116, 117, 124, 124, 117, 118,
|
||||
|
||||
117, 0, 126, 121, 125, 0, 124, 0, 120, 120,
|
||||
0, 125, 114, 0, 114, 117, 127, 117, 114, 121,
|
||||
120, 117, 120, 126, 121, 0, 0, 120, 124, 124,
|
||||
124, 128, 130, 125, 125, 125, 131, 0, 127, 127,
|
||||
127, 129, 120, 129, 120, 126, 126, 126, 120, 132,
|
||||
134, 128, 0, 0, 130, 130, 130, 137, 131, 131,
|
||||
131, 133, 133, 129, 129, 129, 0, 134, 0, 0,
|
||||
132, 136, 0, 128, 128, 128, 137, 0, 0, 0,
|
||||
0, 0, 0, 133, 133, 133, 136, 0, 0, 134,
|
||||
134, 134, 132, 132, 132, 135, 139, 0, 137, 137,
|
||||
118, 118, 120, 121, 0, 122, 119, 119, 119, 123,
|
||||
122, 117, 117, 117, 121, 0, 0, 125, 124, 124,
|
||||
124, 0, 125, 123, 120, 120, 120, 122, 122, 122,
|
||||
149, 123, 123, 123, 127, 127, 121, 121, 121, 125,
|
||||
125, 125, 126, 130, 126, 128, 149, 0, 129, 0,
|
||||
128, 131, 149, 149, 149, 129, 127, 127, 127, 130,
|
||||
0, 131, 130, 132, 126, 126, 126, 128, 128, 128,
|
||||
129, 129, 129, 131, 131, 131, 146, 132, 0, 133,
|
||||
0, 130, 130, 130, 134, 132, 132, 132, 133, 0,
|
||||
148, 147, 0, 134, 152, 0, 146, 0, 0, 147,
|
||||
|
||||
137, 135, 138, 141, 135, 140, 0, 139, 136, 136,
|
||||
136, 0, 140, 0, 142, 0, 141, 135, 135, 135,
|
||||
145, 145, 0, 143, 138, 138, 138, 142, 143, 139,
|
||||
139, 139, 0, 0, 140, 140, 140, 0, 141, 141,
|
||||
141, 144, 145, 145, 145, 143, 143, 143, 146, 142,
|
||||
142, 142, 147, 146, 147, 144, 148, 148, 0, 0,
|
||||
0, 149, 0, 144, 144, 144, 149, 151, 153, 0,
|
||||
146, 146, 146, 0, 147, 147, 147, 152, 148, 148,
|
||||
148, 150, 153, 149, 149, 149, 151, 152, 150, 151,
|
||||
153, 153, 153, 154, 0, 169, 0, 155, 0, 152,
|
||||
148, 133, 133, 133, 150, 0, 134, 134, 134, 152,
|
||||
0, 0, 148, 148, 148, 153, 154, 151, 146, 146,
|
||||
146, 147, 147, 147, 153, 157, 150, 150, 150, 151,
|
||||
155, 152, 152, 152, 154, 0, 0, 156, 0, 151,
|
||||
151, 151, 0, 0, 0, 157, 153, 153, 153, 0,
|
||||
158, 0, 155, 155, 155, 159, 154, 154, 154, 156,
|
||||
156, 156, 158, 0, 160, 159, 163, 157, 157, 157,
|
||||
162, 0, 158, 158, 158, 161, 0, 159, 159, 159,
|
||||
160, 163, 161, 0, 0, 164, 160, 160, 160, 164,
|
||||
165, 0, 162, 162, 162, 166, 0, 161, 161, 161,
|
||||
|
||||
152, 152, 154, 150, 150, 150, 155, 167, 151, 151,
|
||||
151, 168, 0, 170, 171, 154, 154, 154, 169, 155,
|
||||
155, 155, 170, 0, 0, 171, 0, 173, 172, 167,
|
||||
167, 167, 173, 168, 168, 168, 0, 174, 172, 0,
|
||||
169, 169, 169, 175, 170, 170, 170, 171, 171, 171,
|
||||
172, 172, 172, 174, 173, 173, 173, 179, 175, 174,
|
||||
174, 174, 176, 0, 0, 177, 0, 0, 178, 0,
|
||||
0, 180, 0, 181, 0, 179, 0, 177, 181, 0,
|
||||
175, 175, 175, 0, 176, 176, 176, 177, 177, 177,
|
||||
178, 178, 178, 180, 180, 180, 182, 179, 179, 179,
|
||||
168, 168, 0, 163, 163, 163, 0, 164, 164, 164,
|
||||
167, 166, 165, 165, 165, 176, 0, 166, 166, 166,
|
||||
176, 167, 168, 168, 168, 177, 178, 180, 0, 179,
|
||||
177, 0, 167, 167, 167, 181, 0, 178, 179, 182,
|
||||
180, 0, 176, 176, 176, 0, 181, 177, 177, 177,
|
||||
183, 179, 179, 179, 0, 0, 182, 0, 0, 178,
|
||||
178, 178, 180, 180, 180, 183, 184, 0, 181, 181,
|
||||
181, 184, 183, 183, 183, 0, 185, 0, 182, 182,
|
||||
182, 185, 186, 0, 0, 187, 0, 0, 184, 184,
|
||||
184, 187, 188, 0, 0, 186, 0, 0, 185, 185,
|
||||
|
||||
181, 181, 181, 183, 184, 0, 182, 0, 0, 185,
|
||||
0, 0, 186, 0, 0, 0, 188, 0, 0, 0,
|
||||
0, 185, 186, 188, 183, 189, 0, 184, 182, 182,
|
||||
182, 185, 185, 185, 186, 186, 186, 187, 188, 188,
|
||||
188, 0, 0, 189, 0, 0, 183, 183, 183, 184,
|
||||
184, 184, 190, 187, 0, 191, 190, 0, 192, 187,
|
||||
187, 187, 193, 193, 201, 189, 189, 189, 0, 192,
|
||||
201, 191, 202, 0, 190, 190, 190, 191, 191, 191,
|
||||
192, 192, 192, 203, 193, 193, 193, 204, 203, 202,
|
||||
0, 205, 201, 201, 201, 206, 0, 0, 207, 0,
|
||||
185, 189, 192, 0, 190, 0, 190, 187, 187, 187,
|
||||
189, 193, 0, 192, 188, 188, 188, 186, 186, 186,
|
||||
0, 0, 193, 189, 189, 189, 190, 190, 190, 194,
|
||||
196, 0, 195, 196, 197, 192, 192, 192, 197, 198,
|
||||
0, 194, 0, 0, 193, 193, 193, 0, 195, 198,
|
||||
0, 194, 194, 194, 195, 195, 195, 199, 0, 0,
|
||||
197, 197, 197, 0, 196, 0, 199, 200, 0, 0,
|
||||
201, 198, 198, 198, 0, 0, 0, 0, 208, 199,
|
||||
199, 199, 202, 0, 201, 203, 196, 196, 196, 200,
|
||||
200, 200, 201, 201, 201, 203, 205, 208, 202, 206,
|
||||
|
||||
204, 210, 0, 208, 206, 203, 203, 203, 205, 0,
|
||||
0, 202, 202, 202, 207, 209, 0, 206, 206, 206,
|
||||
0, 210, 204, 204, 204, 208, 208, 208, 209, 0,
|
||||
205, 205, 205, 211, 0, 0, 207, 207, 207, 0,
|
||||
0, 212, 214, 210, 210, 210, 212, 0, 211, 213,
|
||||
209, 209, 209, 215, 213, 211, 211, 211, 214, 215,
|
||||
0, 216, 0, 212, 212, 212, 217, 0, 217, 220,
|
||||
216, 213, 213, 213, 219, 215, 215, 215, 0, 0,
|
||||
214, 214, 214, 216, 216, 216, 221, 219, 217, 217,
|
||||
217, 220, 220, 220, 222, 223, 227, 0, 0, 221,
|
||||
208, 208, 208, 205, 202, 202, 202, 203, 203, 203,
|
||||
207, 206, 0, 0, 210, 0, 207, 211, 0, 0,
|
||||
0, 206, 206, 206, 212, 205, 205, 205, 210, 0,
|
||||
0, 211, 207, 207, 207, 213, 216, 212, 214, 0,
|
||||
213, 220, 0, 214, 216, 0, 212, 212, 212, 0,
|
||||
210, 210, 210, 211, 211, 211, 220, 213, 213, 213,
|
||||
214, 214, 214, 217, 0, 221, 216, 216, 216, 217,
|
||||
221, 0, 0, 223, 0, 0, 222, 223, 220, 220,
|
||||
220, 0, 0, 0, 0, 217, 217, 217, 222, 224,
|
||||
228, 0, 221, 221, 221, 223, 223, 223, 222, 222,
|
||||
|
||||
225, 0, 223, 225, 0, 0, 222, 227, 0, 219,
|
||||
219, 219, 224, 0, 226, 0, 222, 222, 222, 226,
|
||||
0, 221, 221, 221, 223, 223, 223, 0, 224, 227,
|
||||
227, 227, 229, 0, 224, 224, 224, 225, 0, 0,
|
||||
228, 226, 226, 226, 0, 233, 229, 231, 0, 228,
|
||||
230, 0, 0, 233, 229, 229, 229, 231, 0, 225,
|
||||
225, 225, 228, 228, 228, 0, 230, 234, 0, 231,
|
||||
231, 231, 230, 230, 230, 233, 233, 233, 235, 234,
|
||||
238, 0, 0, 0, 235, 236, 239, 0, 241, 234,
|
||||
234, 234, 240, 241, 0, 0, 0, 238, 0, 0,
|
||||
222, 226, 227, 230, 224, 0, 226, 231, 0, 0,
|
||||
228, 224, 224, 224, 0, 233, 229, 0, 0, 0,
|
||||
0, 0, 0, 230, 227, 227, 227, 231, 226, 226,
|
||||
226, 229, 228, 228, 228, 233, 0, 0, 229, 229,
|
||||
229, 0, 0, 0, 0, 230, 230, 230, 0, 231,
|
||||
231, 231, 0, 0, 0, 0, 0, 233, 233, 233,
|
||||
236, 236, 236, 236, 236, 236, 236, 237, 237, 237,
|
||||
237, 237, 237, 237, 238, 238, 238, 239, 0, 239,
|
||||
239, 239, 239, 239, 240, 0, 240, 240, 240, 240,
|
||||
240, 241, 241, 243, 0, 243, 244, 0, 244, 245,
|
||||
|
||||
235, 235, 235, 239, 236, 240, 248, 236, 236, 236,
|
||||
241, 241, 241, 242, 240, 240, 240, 245, 242, 238,
|
||||
238, 238, 244, 245, 248, 239, 239, 239, 249, 0,
|
||||
0, 244, 0, 0, 249, 242, 242, 242, 250, 245,
|
||||
245, 245, 0, 0, 0, 251, 248, 248, 248, 251,
|
||||
250, 252, 0, 244, 244, 244, 249, 249, 249, 254,
|
||||
250, 250, 250, 256, 0, 254, 252, 251, 251, 251,
|
||||
255, 0, 258, 252, 252, 252, 257, 0, 259, 0,
|
||||
0, 261, 0, 0, 0, 0, 256, 254, 254, 254,
|
||||
0, 257, 255, 255, 255, 258, 0, 0, 257, 257,
|
||||
|
||||
257, 259, 0, 0, 261, 0, 0, 0, 256, 256,
|
||||
256, 0, 0, 0, 0, 0, 0, 258, 258, 258,
|
||||
0, 0, 0, 259, 259, 259, 261, 261, 261, 264,
|
||||
264, 264, 264, 264, 264, 264, 265, 265, 265, 265,
|
||||
265, 265, 265, 266, 266, 266, 267, 0, 267, 267,
|
||||
267, 267, 267, 268, 0, 268, 268, 268, 268, 268,
|
||||
269, 269, 271, 0, 271, 272, 0, 272, 273, 273,
|
||||
273, 273, 273, 273, 263, 263, 263, 263, 263, 263,
|
||||
263, 263, 263, 263, 263, 263, 263, 263, 263, 263,
|
||||
263, 263, 263, 263, 263, 263, 263, 263, 263, 263,
|
||||
|
||||
263, 263, 263, 263, 263, 263, 263, 263, 263, 263,
|
||||
263, 263, 263, 263, 263, 263, 263, 263, 263, 263,
|
||||
263, 263, 263, 263, 263, 263, 263, 263, 263, 263,
|
||||
263, 263, 263, 263, 263, 263, 263, 263
|
||||
245, 245, 245, 245, 245, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235, 235, 235, 235, 235,
|
||||
235, 235, 235, 235, 235, 235
|
||||
} ;
|
||||
|
||||
static yy_state_type yy_last_accepting_state;
|
||||
@ -957,7 +909,7 @@ ID ([A-Za-z_]|{UTF8})([A-Z.@#\[\]a-z_0-9+-]|{UTF8})*
|
||||
/* Note: this definition of string will work for utf8 as well,
|
||||
although it is a very relaxed definition
|
||||
*/
|
||||
#line 961 "lex.ncg.c"
|
||||
#line 913 "lex.ncg.c"
|
||||
|
||||
#define INITIAL 0
|
||||
|
||||
@ -966,10 +918,8 @@ ID ([A-Za-z_]|{UTF8})([A-Z.@#\[\]a-z_0-9+-]|{UTF8})*
|
||||
* down here because we want the user's section 1 to have been scanned first.
|
||||
* The user has a chance to override it with an option.
|
||||
*/
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef YY_EXTRA_TYPE
|
||||
#define YY_EXTRA_TYPE void *
|
||||
@ -1143,7 +1093,7 @@ YY_DECL
|
||||
|
||||
#line 107 "ncgen.l"
|
||||
|
||||
#line 1145 "lex.ncg.c"
|
||||
#line 1097 "lex.ncg.c"
|
||||
|
||||
if ( !(yy_init) )
|
||||
{
|
||||
@ -1196,13 +1146,13 @@ yy_match:
|
||||
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
||||
{
|
||||
yy_current_state = (int) yy_def[yy_current_state];
|
||||
if ( yy_current_state >= 264 )
|
||||
if ( yy_current_state >= 236 )
|
||||
yy_c = yy_meta[(unsigned int) yy_c];
|
||||
}
|
||||
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
||||
++yy_cp;
|
||||
}
|
||||
while ( yy_base[yy_current_state] != 1375 );
|
||||
while ( yy_base[yy_current_state] != 1206 );
|
||||
|
||||
yy_find_action:
|
||||
yy_act = yy_accept[yy_current_state];
|
||||
@ -1520,7 +1470,7 @@ YY_RULE_SETUP
|
||||
#line 285 "ncgen.l"
|
||||
ECHO;
|
||||
YY_BREAK
|
||||
#line 1522 "lex.ncg.c"
|
||||
#line 1474 "lex.ncg.c"
|
||||
case YY_STATE_EOF(INITIAL):
|
||||
yyterminate();
|
||||
|
||||
@ -1812,7 +1762,7 @@ static int yy_get_next_buffer (void)
|
||||
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
||||
{
|
||||
yy_current_state = (int) yy_def[yy_current_state];
|
||||
if ( yy_current_state >= 264 )
|
||||
if ( yy_current_state >= 236 )
|
||||
yy_c = yy_meta[(unsigned int) yy_c];
|
||||
}
|
||||
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
||||
@ -1840,11 +1790,11 @@ static int yy_get_next_buffer (void)
|
||||
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
||||
{
|
||||
yy_current_state = (int) yy_def[yy_current_state];
|
||||
if ( yy_current_state >= 264 )
|
||||
if ( yy_current_state >= 236 )
|
||||
yy_c = yy_meta[(unsigned int) yy_c];
|
||||
}
|
||||
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
||||
yy_is_jam = (yy_current_state == 263);
|
||||
yy_is_jam = (yy_current_state == 235);
|
||||
|
||||
return yy_is_jam ? 0 : yy_current_state;
|
||||
}
|
||||
|
533
oc2/daptab.c
533
oc2/daptab.c
File diff suppressed because it is too large
Load Diff
29
oc2/daptab.h
29
oc2/daptab.h
@ -1,8 +1,8 @@
|
||||
/* A Bison parser, made by GNU Bison 2.5. */
|
||||
/* A Bison parser, made by GNU Bison 2.6.4. */
|
||||
|
||||
/* Bison interface for Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
|
||||
Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@ -30,6 +30,15 @@
|
||||
This special exception was added by the Free Software Foundation in
|
||||
version 2.2 of Bison. */
|
||||
|
||||
#ifndef YY_DAP_DAP_TAB_H_INCLUDED
|
||||
# define YY_DAP_DAP_TAB_H_INCLUDED
|
||||
/* Enabling traces. */
|
||||
#ifndef YYDEBUG
|
||||
# define YYDEBUG 1
|
||||
#endif
|
||||
#if YYDEBUG
|
||||
extern int dapdebug;
|
||||
#endif
|
||||
|
||||
/* Tokens. */
|
||||
#ifndef YYTOKENTYPE
|
||||
@ -66,7 +75,6 @@
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||
typedef int YYSTYPE;
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
@ -75,5 +83,18 @@ typedef int YYSTYPE;
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef YYPARSE_PARAM
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int dapparse (void *YYPARSE_PARAM);
|
||||
#else
|
||||
int dapparse ();
|
||||
#endif
|
||||
#else /* ! YYPARSE_PARAM */
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int dapparse (DAPparsestate* parsestate);
|
||||
#else
|
||||
int dapparse ();
|
||||
#endif
|
||||
#endif /* ! YYPARSE_PARAM */
|
||||
|
||||
|
||||
#endif /* !YY_DAP_DAP_TAB_H_INCLUDED */
|
||||
|
10
oc2/oc.c
10
oc2/oc.c
@ -2039,3 +2039,13 @@ oc_dds_free(OCobject link, OCobject dds0)
|
||||
}
|
||||
|
||||
|
||||
OCerror
|
||||
oc_set_curl_callback(OClink link, oc_curl_callback* callback, void* userstate)
|
||||
{
|
||||
OCstate* state;
|
||||
OCVERIFY(OC_State,link);
|
||||
OCDEREF(OCstate*,state,link);
|
||||
state->usercurl = callback;
|
||||
state->usercurldata = userstate;
|
||||
return OC_NOERR;
|
||||
}
|
||||
|
10
oc2/oc.h
10
oc2/oc.h
@ -86,6 +86,8 @@ OC_Structure=104,
|
||||
OC_Dimension=105,
|
||||
OC_Attribute=106,
|
||||
OC_Attributeset=107,
|
||||
OC_Map=108,
|
||||
OC_Group=109,
|
||||
} OCtype;
|
||||
|
||||
/*!\enum OCerror
|
||||
@ -553,6 +555,14 @@ extern OCerror oc_set_useragent(OClink, const char* agent);
|
||||
extern OCerror oc_raw_xdrsize(OClink,OCddsnode,off_t*);
|
||||
#endif
|
||||
|
||||
/*
|
||||
Define a callback function type
|
||||
*/
|
||||
|
||||
typedef void oc_curl_callback(void*,void*);
|
||||
|
||||
extern OCerror oc_set_curl_callback(OClink,oc_curl_callback*,void* state);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
@ -194,6 +194,8 @@ ocfetch(OCstate* state, const char* constraint, OCdxd kind, OCflags flags,
|
||||
if((stat=ocset_curl_flags(state)) != OC_NOERR) goto fail;
|
||||
if((stat=ocset_proxy(state)) != OC_NOERR) goto fail;
|
||||
if((stat=ocset_ssl(state)) != OC_NOERR) goto fail;
|
||||
if(state->usercurl)
|
||||
state->usercurl((void*)state->curl,state->usercurldata);
|
||||
|
||||
ocbytesclear(state->packet);
|
||||
|
||||
|
@ -159,6 +159,8 @@ struct OCstate {
|
||||
char *username;
|
||||
char *password;
|
||||
} creds;
|
||||
oc_curl_callback* usercurl;
|
||||
void* usercurldata;
|
||||
long ddslastmodified;
|
||||
long datalastmodified;
|
||||
};
|
||||
|
@ -95,8 +95,6 @@ readpacket(OCstate* state, OCURI* url,OCbytes* packet,OCdxd dxd,long* lastmodifi
|
||||
char* fetchurl = NULL;
|
||||
CURL* curl = state->curl;
|
||||
|
||||
|
||||
|
||||
fileprotocol = (strcmp(url->protocol,"file")==0);
|
||||
|
||||
if(fileprotocol && !state->curlflags.proto_file) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user