aboutsummaryrefslogtreecommitdiff
path: root/9
diff options
context:
space:
mode:
Diffstat (limited to '9')
-rw-r--r--9/input1
-rw-r--r--9/main.l16
-rw-r--r--9/main.y30
3 files changed, 47 insertions, 0 deletions
diff --git a/9/input b/9/input
new file mode 100644
index 0000000..01efb5e
--- /dev/null
+++ b/9/input
@@ -0,0 +1 @@
aaabbbbc
diff --git a/9/main.l b/9/main.l
new file mode 100644
index 0000000..04c6bf0
--- /dev/null
+++ b/9/main.l
@@ -0,0 +1,16 @@
1%{
2#include "y.tab.h"
3extern int yylval;
4%}
5
6%%
7a return A;
8b return B;
9c return C;
10. return yytext[0];
11\n return 0;
12%%
13
14int yywrap() {
15 return 1;
16}
diff --git a/9/main.y b/9/main.y
new file mode 100644
index 0000000..0db29c1
--- /dev/null
+++ b/9/main.y
@@ -0,0 +1,30 @@
1%{
2#include <stdio.h>
3#include <stdlib.h>
4int yylex();
5int yyerror(char *);
6%}
7
8%token A B C
9
10%%
11S: X Y
12 |
13 ;
14X: A X B
15 |
16 ;
17Y: B Y C
18 |
19 ;
20%%
21
22int main() {
23 yyparse();
24 printf("valid string");
25}
26
27int yyerror(char *s) {
28 printf("error: %s", s);
29 exit(0);
30}