-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathparser.y
More file actions
57 lines (47 loc) · 688 Bytes
/
parser.y
File metadata and controls
57 lines (47 loc) · 688 Bytes
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
%{
#include <stdio.h>
#include <string.h>
#include "ruler.h"
#define YYSTYPE char *
%}
%token CRITERION EQUALS STRING NEWLINE COMMAND END
%start block_list
%defines
%error-verbose
%%
block_list: block
| block_list NEWLINE
| block_list block
| block_list END
{ return 0; }
;
block: descriptor_list command
{
block();
}
;
descriptor_list: descriptor
| descriptor_list descriptor
| descriptor_list NEWLINE
;
command: COMMAND
{
comm($1);
}
;
descriptor: CRITERION EQUALS STRING
{
desc($1, $3);
}
;
%%
void
yyerror(const char *str)
{
fprintf(stderr, "error: %s\n", str);
}
int
yywrap()
{
return 1;
}