summaryrefslogtreecommitdiffstats
path: root/languages/cpp/file_templates/l
blob: 39a8d1384440c05bdbc648f03366b4d0f70ac30f (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
33
34
35
/*
 *
 * flex Implementation: $MODULE$
 *
 * Description:
 *
 *
 * Author: $AUTHOR$ <$EMAIL$>, (C) $YEAR$
 *
 * Copyright: See COPYING file that comes with this distribution
 *
 */

/*
 *
 * Use options
 *
 * 	%option prefix="foo"
 * 	%option outfile="lex.yy.c"
 *
 * to create multiple flex scanner in one project.
 *
 */

%{


%}

%option debug

%%


%%