summaryrefslogtreecommitdiff
path: root/yacclex/calclexret/calc.l
blob: f681fa5f7405073d475b45b7b9a11b524ff3c0d6 (plain) (blame)
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
%{
enum yytokentype {
	NUMBER = 258,
	ADD = 259,
	SUB = 260,
	MUL = 261,
	DIV = 262,
	ABS = 263,
	EOL = 264
};

int yylval;
%}

%%
"+"    { return ADD;                                }
"-"    { return SUB;                                }
"*"    { return MUL;                                }
"/"    { return DIV;                                }
"|"    { return ABS;                                }
[0-9]+ { yylval = atoi(yytext); return NUMBER;      }
\n     { return EOL;                                }
[ \t]  { /* ignore whitespace */                    }
.      { printf("Mystery character %c\n", *yytext); }
%%

int yywrap() {
	return 1;
}

int main(void) {
	int tok;
	while((tok = yylex())) {
		printf("%d", tok);
		if(tok == NUMBER)
			printf(" = %d\n", yylval);
		else printf("\n");
	}
}