summaryrefslogtreecommitdiff
path: root/test/export4.rl
blob: 94d50e435a34e56af602c7ec84496b392b94b3e1 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 * @LANG: d
 */

import std.c.stdio;
import std.string;

%%{
	machine test;

	export c1 = 'c';
	export c2 = 'z';
	export c3 = 't';

	commands := (
		c1 . digit* '\n' @{ printf( "c1\n" );} |
		c2 . alpha* '\n' @{ printf( "c2\n" );}|
		c3 . '.'* '\n' @{ printf( "c3\n" );}
	)*;
		
	some_other := any*;
}%%

%% write exports;
%% write data;

int test( char data[] )
{
	int cs = test_en_commands;
	char *p = data.ptr, pe = data.ptr + data.length;

	%% write init nocs;
	%% write exec;

	if ( cs >= test_first_final )
		printf("ACCEPT\n");
	else
		printf("ERROR\n");
	return 0;
}

char data[] = [ 
	test_ex_c1, '1', '2', '\n', 
	test_ex_c2, 'a', 'b', '\n', 
	test_ex_c3, '.', '.', '\n'
];

int main()
{
	test( data );
	return 0;
}

/+ _____OUTPUT_____
c1
c2
c3
ACCEPT
++++++++++++++++++/