filters (2.49) unstable; urgency=low
[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.020101 seconds and 4 git commands to generate.