|
|
1.1 ! root 1: %{ ! 2: #include <stdio.h> ! 3: #define yywrap() Next() ! 4: #undef input() ! 5: #undef unput ! 6: ! 7: %} ! 8: %% ! 9: [^0-9A-Z"("")"-]*";" { if (SendAll) {REJECT;} ! 10: else { yylval = ';'; ! 11: return(';'); ! 12: } ! 13: } ! 14: ! 15: [^0-9A-Z"("")"";"-]+ { yylval = Concat(yytext,0); ! 16: return(BLANK); } ! 17: ! 18: [A-Z"("")"-] { yylval = yytext[0]; ! 19: return(*yytext); } ! 20: ! 21: [0-9] { yylval = yytext[0]; ! 22: return(DIGIT); } ! 23: ! 24: ";" { yylval = ';'; ! 25: return(';'); } ! 26: %%
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.