e09ba5fd2c4a5a7ef125e2968e6b1ff1b051ae4e
[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 const char *yylex(void);
10
11 int main()
12 {
13 char *line;
14
15 while((line = (char *) yylex())) {
16 printf("%s", line);
17 }
18
19 return 0;
20 }
21
22 int yywrap ()
23 {
24 return (1);
25 }
This page took 0.020968 seconds and 3 git commands to generate.