__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
/* A Bison parser, made by GNU Bison 3.8.2.  */

/* Bison interface for Yacc-like parsers in C

   Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 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
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */

/* As a special exception, you may create a larger work that contains
   part or all of the Bison parser skeleton and distribute that work
   under terms of your choice, so long as that work isn't itself a
   parser generator using the skeleton or a modified version thereof
   as a parser skeleton.  Alternatively, if you modify or redistribute
   the parser skeleton itself, you may (at your option) remove this
   special exception, which will cause the skeleton and the resulting
   Bison output files to be licensed under the GNU General Public
   License without this special exception.

   This special exception was added by the Free Software Foundation in
   version 2.2 of Bison.  */

/* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
   especially those whose name start with YY_ or yy_.  They are
   private implementation details that can be changed or removed.  */

#ifndef YY_YY_SCRIPTS_KCONFIG_PARSER_TAB_H_INCLUDED
# define YY_YY_SCRIPTS_KCONFIG_PARSER_TAB_H_INCLUDED
/* Debug traces.  */
#ifndef YYDEBUG
# define YYDEBUG 1
#endif
#if YYDEBUG
extern int yydebug;
#endif

/* Token kinds.  */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
  enum yytokentype
  {
    YYEMPTY = -2,
    YYEOF = 0,                     /* "end of file"  */
    YYerror = 256,                 /* error  */
    YYUNDEF = 257,                 /* "invalid token"  */
    T_HELPTEXT = 258,              /* T_HELPTEXT  */
    T_WORD = 259,                  /* T_WORD  */
    T_WORD_QUOTE = 260,            /* T_WORD_QUOTE  */
    T_BOOL = 261,                  /* T_BOOL  */
    T_CHOICE = 262,                /* T_CHOICE  */
    T_CLOSE_PAREN = 263,           /* T_CLOSE_PAREN  */
    T_COLON_EQUAL = 264,           /* T_COLON_EQUAL  */
    T_COMMENT = 265,               /* T_COMMENT  */
    T_CONFIG = 266,                /* T_CONFIG  */
    T_DEFAULT = 267,               /* T_DEFAULT  */
    T_DEF_BOOL = 268,              /* T_DEF_BOOL  */
    T_DEF_TRISTATE = 269,          /* T_DEF_TRISTATE  */
    T_DEPENDS = 270,               /* T_DEPENDS  */
    T_ENDCHOICE = 271,             /* T_ENDCHOICE  */
    T_ENDIF = 272,                 /* T_ENDIF  */
    T_ENDMENU = 273,               /* T_ENDMENU  */
    T_HELP = 274,                  /* T_HELP  */
    T_HEX = 275,                   /* T_HEX  */
    T_IF = 276,                    /* T_IF  */
    T_IMPLY = 277,                 /* T_IMPLY  */
    T_INT = 278,                   /* T_INT  */
    T_MAINMENU = 279,              /* T_MAINMENU  */
    T_MENU = 280,                  /* T_MENU  */
    T_MENUCONFIG = 281,            /* T_MENUCONFIG  */
    T_MODULES = 282,               /* T_MODULES  */
    T_ON = 283,                    /* T_ON  */
    T_OPEN_PAREN = 284,            /* T_OPEN_PAREN  */
    T_PLUS_EQUAL = 285,            /* T_PLUS_EQUAL  */
    T_PROMPT = 286,                /* T_PROMPT  */
    T_RANGE = 287,                 /* T_RANGE  */
    T_SELECT = 288,                /* T_SELECT  */
    T_SOURCE = 289,                /* T_SOURCE  */
    T_STRING = 290,                /* T_STRING  */
    T_TRISTATE = 291,              /* T_TRISTATE  */
    T_VISIBLE = 292,               /* T_VISIBLE  */
    T_EOL = 293,                   /* T_EOL  */
    T_ASSIGN_VAL = 294,            /* T_ASSIGN_VAL  */
    T_OR = 295,                    /* T_OR  */
    T_AND = 296,                   /* T_AND  */
    T_EQUAL = 297,                 /* T_EQUAL  */
    T_UNEQUAL = 298,               /* T_UNEQUAL  */
    T_LESS = 299,                  /* T_LESS  */
    T_LESS_EQUAL = 300,            /* T_LESS_EQUAL  */
    T_GREATER = 301,               /* T_GREATER  */
    T_GREATER_EQUAL = 302,         /* T_GREATER_EQUAL  */
    T_NOT = 303                    /* T_NOT  */
  };
  typedef enum yytokentype yytoken_kind_t;
#endif

/* Value type.  */
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
union YYSTYPE
{

	char *string;
	struct symbol *symbol;
	struct expr *expr;
	struct menu *menu;
	enum symbol_type type;
	enum variable_flavor flavor;


};
typedef union YYSTYPE YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define YYSTYPE_IS_DECLARED 1
#endif


extern YYSTYPE yylval;


int yyparse (void);


#endif /* !YY_YY_SCRIPTS_KCONFIG_PARSER_TAB_H_INCLUDED  */

Filemanager

Name Type Size Permission Actions
lxdialog Folder 0755
tests Folder 0755
Makefile File 8.47 KB 0644
conf File 138.45 KB 0755
conf.c File 18.48 KB 0644
conf.o File 26.51 KB 0644
confdata.c File 21.79 KB 0644
confdata.o File 26.48 KB 0644
expr.c File 28.54 KB 0644
expr.h File 8.73 KB 0644
expr.o File 20.48 KB 0644
gconf-cfg.sh File 793 B 0755
gconf.c File 36.36 KB 0644
gconf.glade File 25.04 KB 0644
images.c File 6.42 KB 0644
images.h File 857 B 0644
internal.h File 548 B 0644
lexer.l File 8.89 KB 0644
lexer.lex.c File 110.47 KB 0644
lexer.lex.o File 46.78 KB 0644
lkc.h File 3.54 KB 0644
lkc_proto.h File 1.79 KB 0644
mconf-cfg.sh File 1.48 KB 0755
mconf.c File 25.31 KB 0644
menu.c File 18.2 KB 0644
menu.o File 18.85 KB 0644
merge_config.sh File 5.29 KB 0755
mnconf-common.c File 794 B 0644
mnconf-common.h File 397 B 0644
nconf-cfg.sh File 1.38 KB 0755
nconf.c File 38.26 KB 0644
nconf.gui.c File 15.43 KB 0644
nconf.h File 2.21 KB 0644
parser.tab.c File 71.79 KB 0644
parser.tab.h File 4.95 KB 0644
parser.tab.o File 44.44 KB 0644
parser.y File 16.17 KB 0644
preprocess.c File 11.06 KB 0644
preprocess.h File 432 B 0644
preprocess.o File 12.45 KB 0644
qconf-cfg.sh File 1020 B 0755
qconf.cc File 41.47 KB 0644
qconf.h File 6.25 KB 0644
streamline_config.pl File 16.77 KB 0755
symbol.c File 28.43 KB 0644
symbol.o File 25.26 KB 0644
util.c File 1.85 KB 0644
util.o File 3.76 KB 0644
Filemanager