Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 42620103d8ee8a2d972d3103bad0ab73 > files > 15

waf-1.5.19-1.fc14.noarch.rpm

%{
#define YYSTYPE double
#include "calc.tab.h"
extern YYSTYPE yylval;
%}

%%
[0-9]+\.?[0-9]* { yylval = atof( yytext ); return NUMBER; };
[ \t] ;  /* ignore whitespace */
\n      { return yytext[0]; };
. 	{   return yytext[0]; }
<<EOF>> { printf("eof\n"); return 0; };
%%