From a133079e7d76420e0e5f0f386ee714e29776a6fc Mon Sep 17 00:00:00 2001 From: Julian T Date: Wed, 16 Oct 2019 16:34:26 +0200 Subject: Some operating system work --- sem1/osc/mm10/opg1.l | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 sem1/osc/mm10/opg1.l (limited to 'sem1/osc/mm10/opg1.l') diff --git a/sem1/osc/mm10/opg1.l b/sem1/osc/mm10/opg1.l new file mode 100644 index 0000000..b5cb478 --- /dev/null +++ b/sem1/osc/mm10/opg1.l @@ -0,0 +1,22 @@ +%{ + +#include + +%} + +ting (a|b)abcd + +%% + +{ting} { printf("Fandt ting %s\n", yytext); return 1; } +. { printf("Meh"); } + +%% + +int main(void) { + + printf("yylex: %d\n", yylex()); + + return 0; + +} -- cgit v1.2.3