2 /* Scan Bison Skeletons.
3 Copyright (C) 2001 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
7 Bison is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 Bison is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Bison; see the file COPYING. If not, write to the Free
19 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
26 #include "parse-skel.h"
36 Then we have warning: `yy_flex_realloc' defined but not used.
37 Seems like a Flex bug to me: Why the heck yylineno would trigger
38 the REJECT exception??? */
42 "%%{line}" { return LINE; }
43 "%%{skeleton-line}" { return SLINE; }
45 "%%{yacc}" { return YACC; }
46 "%%{section}" { return SECTION; }
48 "%%{guards}" { return GUARDS; }
49 "%%{actions}" { return ACTIONS; }
50 "%%{tokendef}" { return TOKENS; }
52 "%%{"[a-zA-Z][0-9a-zA-Z_-]+"}" { /* Muscle. */
53 size_t len = strlen (yytext);
54 yylval.string = (char*) malloc (len - 3);
55 strncpy (yylval.string, yytext + 3, len - 4);
56 yylval.string[len - 4] = 0;
60 "%%\"".*"\"" { /* String. */
61 size_t len = strlen (yytext);
62 yylval.string = (char*) malloc (len - 3);
63 strncpy (yylval.string, yytext + 3, len - 4);
64 yylval.string[len - 4] = 0;
68 <<EOF>> { /* End of file. */
72 "\n" { /* End of line. */
77 yylval.character = *yytext;