/crypto/heimdal/lib/sl/parse.h

https://bitbucket.org/freebsd/freebsd-head/ · C++ Header · 78 lines · 32 code · 9 blank · 37 comment · 1 complexity · 7e1ed0b084e2dee491593b9039938ee7 MD5 · raw file

  1. /* A Bison parser, made by GNU Bison 2.3. */
  2. /* Skeleton interface for Bison's Yacc-like parsers in C
  3. Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
  4. Free Software Foundation, 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 2, or (at your option)
  8. 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, write to the Free Software
  15. Foundation, Inc., 51 Franklin Street, Fifth Floor,
  16. Boston, MA 02110-1301, USA. */
  17. /* As a special exception, you may create a larger work that contains
  18. part or all of the Bison parser skeleton and distribute that work
  19. under terms of your choice, so long as that work isn't itself a
  20. parser generator using the skeleton or a modified version thereof
  21. as a parser skeleton. Alternatively, if you modify or redistribute
  22. the parser skeleton itself, you may (at your option) remove this
  23. special exception, which will cause the skeleton and the resulting
  24. Bison output files to be licensed under the GNU General Public
  25. License without this special exception.
  26. This special exception was added by the Free Software Foundation in
  27. version 2.2 of Bison. */
  28. /* Tokens. */
  29. #ifndef YYTOKENTYPE
  30. # define YYTOKENTYPE
  31. /* Put the tokens into the symbol table, so that GDB and other debuggers
  32. know about them. */
  33. enum yytokentype {
  34. TABLE = 258,
  35. REQUEST = 259,
  36. UNKNOWN = 260,
  37. UNIMPLEMENTED = 261,
  38. END = 262,
  39. STRING = 263
  40. };
  41. #endif
  42. /* Tokens. */
  43. #define TABLE 258
  44. #define REQUEST 259
  45. #define UNKNOWN 260
  46. #define UNIMPLEMENTED 261
  47. #define END 262
  48. #define STRING 263
  49. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  50. typedef union YYSTYPE
  51. #line 52 "parse.y"
  52. {
  53. char *string;
  54. unsigned number;
  55. struct string_list *list;
  56. }
  57. /* Line 1529 of yacc.c. */
  58. #line 71 "parse.h"
  59. YYSTYPE;
  60. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  61. # define YYSTYPE_IS_DECLARED 1
  62. # define YYSTYPE_IS_TRIVIAL 1
  63. #endif
  64. extern YYSTYPE yylval;