git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@121 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
Joshua Kwan 2004-01-16 02:32:33 +00:00
parent 61efafdd49
commit de1e3fea9c
1 changed files with 2 additions and 6 deletions

View File

@ -1,8 +1,5 @@
/* Lexical analyzer for dgamelaunch's configuration file. */
%option nounput
%option noyywrap
%{
#include <stdio.h>
@ -27,13 +24,12 @@ WHITE [\t ]*
COMMENT ^#.*
LONGCOMMENT "/*"
%% /* BEGIN RULES SECTION */
%%
{NUMBER} { yylval.i = atoi(yytext); return TYPE_NUMBER; }
{VALUE} {
yytext[yyleng - 1] = '\0'; /* Kill the trailing quote */
yytext++; /* Kill the leading quote */
yylval.s = strdup(yytext);
yylval.s = strdup(yytext + 1); /* kill leading quote */
return TYPE_VALUE;
}