author | Markus Bröker <mbroeker@largo.dyndns.tv> |
Wed, 02 May 2012 20:49:41 +0200 | |
changeset 164 | e1f4bba1097a |
parent 39 | 46d7ec9d63bd |
permissions | -rw-r--r-- |
/** * test/demos/parser/lexer.ll * Copyright (C) 2008 Markus Broeker */ %{ #include <stdio.h> #include "parser.h" %} %% [0-9]+ { yylval = atoi(yytext); return DIGIT; } [a-zA-Z] { yylval = yytext[0]; return LETTER; } "+" { return PLUS; } "-" { return MINUS; } "*" { return MUL; } "/" { return DIV; } "("|")"|"=" { return yytext[0]; } [ \t]+ {} \n { return yytext[0]; } . { printf("FEHLER: %s\n", yytext); } %%