2880331cdc6603a9b06b372293782e733c27f3b8
[filters.git] / kraut.dir / kraut.c
1 #include <stdio.h>
2 /* Kraut v0.9 */
3 /* by */
4 /* John Sparks */
5 /* 5-5-1989 */
6
7 /* This is in the public domain. Do with it as you will. */
8
9 main()
10 {
11 char *line;
12
13 while(line = (char *) yylex()){
14 printf("%s", line);
15 }
16 }
17
18 yywrap ()
19 {
20 return (1);
21 }
This page took 0.020236 seconds and 3 git commands to generate.