summaryrefslogtreecommitdiff
path: root/tools/d2c/hooks/tokens.l
blob: 1f72d2c2f61e27077e1c240ac4b77d6b5d7e1815 (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

%top {

#include "grammar.h"

}


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


%%


[ \t\n]                 { }

[a-z_][a-z0-9_]*        { yylvalp->string = strdup(yytext); return NAME; }
"="                     { return EQ; }

.                       {
                            char *msg;
                            asprintf(&msg, "Unhandled token in d2c hooks block: '%s'", yytext);
                            YY_FATAL_ERROR(msg);
                            free(msg);
                        }


%%