aboutsummaryrefslogtreecommitdiff
path: root/gfsm/gfsm/src/libgfsm/tests/calctest.l
blob: 1a03bc19053d20dcf3061fb25e1f45680e9172aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*======================================================================
 * Flex Options
 */
%option outfile="calctest.lex.c"
%option header-file="calctest.lex.h"
%option prefix="calctest_yy"
%option reentrant
%option 8bit

%option bison-bridge

%{
/*======================================================================
 * User C Header
 */

/* bison stuff */
#include "calctest.tab.h"

%}

/*======================================================================
 * Flex Definitions
 */


/*======================================================================
 * Flex Rules
 */
%%

([[:digit:]]*\.?)[[:digit:]]+  { yylval->dbl = strtod(yytext,NULL); return NUMBER;}

\( { return LPAREN; }
\) { return RPAREN; }
\+ { return PLUS; }
\- { return MINUS; }
\* { return TIMES; }
\/ { return DIV; }

\n { return NEWLINE; }

.  { return OTHER; /* ignore */ }

%%

/*======================================================================
 * User C Code
 */

//-- wrapper: don't
int calctest_yywrap(yyscan_t yyscanner) { return 1; }