summaryrefslogtreecommitdiff
path: root/tools/d2c/format/tokens.l
blob: 12ca7f09a4d1321d9b4ad66eb558c352ac7cf189 (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

%top {

#include "grammar.h"

}


%option noyywrap
%option nounput
%option noinput
%option yylineno
%option noyy_top_state

%x bsize


%%


" "                     { }

[A-Za-z0-9_]*   { yylvalp->string = strdup(yytext); return OPS_TYPE; }


%%