aboutsummaryrefslogtreecommitdiff
path: root/gfsm/gfsm/src/libgfsm/tests/calc2test.l
blob: 7072a4cee4a46331bccc03c12c1b7a55b2809292 (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
53
54
55
56
/*======================================================================
 * Flex Options
 */
%option outfile="calc2test.lex.c"
%option header-file="calc2test.lex.h"
%option prefix="calc2test_yy"
%option reentrant
%option 8bit
%option yylineno

%option bison-bridge

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

/* bison stuff */
#include <gfsmScanner.h>
#include "calc2test.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; }

[[:space:]] { /* ignore */ }

.  { return OTHER; /* ignore */ }

%%

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

//-- wrapper: use default
GFSM_SCANNER_YYWRAP(calc2test_yy)