Changeset 407
- Timestamp:
- 15/11/08 20:45:32 (12 years ago)
- Location:
- abnfparser/bap
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
abnfparser/bap/scanner.l
r405 r407 40 40 "$Id: scanner.l,v 1.1 2008-05-28 12:01:58 jre Exp $"; 41 41 42 int yylineno = 1;43 42 int yycolumn = 0; 44 43 int yyerrors = 0; -
abnfparser/bap/y.tab.h
r405 r407 1 /* A Bison parser, made by GNU Bison 2. 1. */1 /* A Bison parser, made by GNU Bison 2.3. */ 2 2 3 /* Skeleton parser for Yacc-like parsing with Bison, 4 Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. 3 /* Skeleton interface for Bison's Yacc-like parsers in C 4 5 Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 6 Free Software Foundation, Inc. 5 7 6 8 This program is free software; you can redistribute it and/or modify … … 19 21 Boston, MA 02110-1301, USA. */ 20 22 21 /* As a special exception, when this file is copied by Bison into a 22 Bison output file, you may use that output file without restriction. 23 This special exception was added by the Free Software Foundation 24 in version 1.24 of Bison. */ 23 /* As a special exception, you may create a larger work that contains 24 part or all of the Bison parser skeleton and distribute that work 25 under terms of your choice, so long as that work isn't itself a 26 parser generator using the skeleton or a modified version thereof 27 as a parser skeleton. Alternatively, if you modify or redistribute 28 the parser skeleton itself, you may (at your option) remove this 29 special exception, which will cause the skeleton and the resulting 30 Bison output files to be licensed under the GNU General Public 31 License without this special exception. 32 33 This special exception was added by the Free Software Foundation in 34 version 2.2 of Bison. */ 25 35 26 36 /* Tokens. */ … … 65 75 66 76 67 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED) 77 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED 78 typedef union YYSTYPE 68 79 #line 66 "parser.y" 69 typedef union YYSTYPE{80 { 70 81 char *string; 71 82 struct range range; 72 83 object *object; 73 84 int retval; 74 } YYSTYPE; 75 /* Line 1447 of yacc.c. */ 76 #line 77 "y.tab.h" 85 } 86 /* Line 1529 of yacc.c. */ 87 #line 88 "y.tab.h" 88 YYSTYPE; 77 89 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ 78 90 # define YYSTYPE_IS_DECLARED 1 … … 82 94 extern YYSTYPE yylval; 83 95 84 85
Note: See TracChangeset
for help on using the changeset viewer.