aboutsummaryrefslogtreecommitdiff
path: root/properties.l
blob: 67a5c2a93cb11f385d9149d7cf798bdc72b39685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
%{
#include "properties-parser.h"
%}

%%

=|:                    return DIV;
^[ \t]*[a-zA-Z0-9\.]*  return KEY;
[ \t]*                 ;
.                      return VALUE;

%%