diff options
author | Julian T <julian@jtle.dk> | 2019-10-16 16:34:26 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2019-10-16 16:34:26 +0200 |
commit | a133079e7d76420e0e5f0f386ee714e29776a6fc (patch) | |
tree | e1b554be4abab0bd69ad1a227931416704313bd9 /sem1/osc/mm10/opg3.l | |
parent | eb73b7edb80c59e7ca6477d933730d7553490ab6 (diff) |
Some operating system work
Diffstat (limited to 'sem1/osc/mm10/opg3.l')
-rw-r--r-- | sem1/osc/mm10/opg3.l | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sem1/osc/mm10/opg3.l b/sem1/osc/mm10/opg3.l new file mode 100644 index 0000000..1c4b9c7 --- /dev/null +++ b/sem1/osc/mm10/opg3.l @@ -0,0 +1,36 @@ +%{ + +#include <stdio.h> + +#define BEGIN_T 1 +#define END_T 2 +#define NUM_T 3 +#define VAR_T 4 + +%} + +VAR [a-zA-Z][a-zA-Z\_\-0-9]* +TAL [0-9]+ + +%% + +begin {printf("Found a BEGIN\n"); return BEGIN_T;} +end {printf("Found a END\n"); return END_T;} +{VAR} {printf("Found a variable %s\n", yytext); return VAR_T;} +{TAL} {printf("Found a number %d\n", strtol(yytext, NULL, 10)); return NUM_T;} + +%% + +int main(void) { + + for(;;) { + int t = yylex(); + printf("yylex: %d\n", t); + if( t == END_T ) { + break; + } + } + + return 0; + +} |