Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

99 lines
2.8KB

  1. /* A Bison parser, made by GNU Bison 3.8.2. */
  2. /* Bison interface for Yacc-like parsers in C
  3. Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,
  4. Inc.
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <https://www.gnu.org/licenses/>. */
  15. /* As a special exception, you may create a larger work that contains
  16. part or all of the Bison parser skeleton and distribute that work
  17. under terms of your choice, so long as that work isn't itself a
  18. parser generator using the skeleton or a modified version thereof
  19. as a parser skeleton. Alternatively, if you modify or redistribute
  20. the parser skeleton itself, you may (at your option) remove this
  21. special exception, which will cause the skeleton and the resulting
  22. Bison output files to be licensed under the GNU General Public
  23. License without this special exception.
  24. This special exception was added by the Free Software Foundation in
  25. version 2.2 of Bison. */
  26. /* DO falseT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
  27. especially those whose name start with YY_ or yy_. They are
  28. private implementation details that can be changed or removed. */
  29. #ifndef YY_YY_EGREP_H_INCLUDED
  30. #define YY_YY_EGREP_H_INCLUDED
  31. /* Debug traces. */
  32. #ifndef YYDEBUG
  33. # define YYDEBUG 0
  34. #endif
  35. #if YYDEBUG
  36. extern int yydebug;
  37. #endif
  38. /* Token kinds. */
  39. #ifndef YYTOKENTYPE
  40. # define YYTOKENTYPE
  41. enum yytokentype {
  42. YYEMPTY = -2,
  43. YYEOF = 0, /* "end of file" */
  44. YYerror = 256, /* error */
  45. YYUNDEF = 257, /* "invalid token" */
  46. CHAR = 258, /* CHAR */
  47. DOT = 259, /* DOT */
  48. CCL = 260, /* CCL */
  49. NCCL = 261, /* NCCL */
  50. OR = 262, /* OR */
  51. CAT = 263, /* CAT */
  52. STAR = 264, /* STAR */
  53. PLUS = 265, /* PLUS */
  54. QUEST = 266 /* QUEST */
  55. };
  56. typedef enum yytokentype yytoken_kind_t;
  57. #endif
  58. /* Token kinds. */
  59. #define YYEMPTY -2
  60. #define YYEOF 0
  61. #define YYerror 256
  62. #define YYUNDEF 257
  63. #define CHAR 258
  64. #define DOT 259
  65. #define CCL 260
  66. #define NCCL 261
  67. #define OR 262
  68. #define CAT 263
  69. #define STAR 264
  70. #define PLUS 265
  71. #define QUEST 266
  72. /* Value type. */
  73. #if !defined YYSTYPE && !defined YYSTYPE_IS_DECLARED
  74. typedef int YYSTYPE;
  75. # define YYSTYPE_IS_TRIVIAL 1
  76. # define YYSTYPE_IS_DECLARED 1
  77. #endif
  78. extern YYSTYPE yylval;
  79. int yyparse(void);
  80. #endif /* !YY_YY_EGREP_H_INCLUDED */