summaryrefslogtreecommitdiff
path: root/other/burneye/src/conf/config.y
blob: 4285e756ad319aaedece2750d44a6736b4ec83fd (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
/* burneye - configuration file parser
 *
 * -scut
 */

%{

%}

%union {
	unsigned char *		str;
	unsigned long int	num;
}

%token	<str>	EXPR_BLOCK_BEGIN
%token	<str>	EXPR_BLOCK_END
%token	<str>	QSTRING
%token	<str>	FUNCTION
%token	<num>	NUM

/* types here */
/* %type <pp_element> script */

%%

configuration: