blob: 80240c2b8a76a66fa707016cbb9e573f82c91a95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
%{
#include "properties-parser.h"
%}
%%
=|: return DIV;
^[ \t]*[a-zA-Z0-9\.]* yylval.value = strdup(yytext); return KEY;
. yylval.value = strdup(yytext); return VALUE;
%%
|