]> iEval git - filters.git/blame_incremental - kraut.dir/kraut.c
Bump Standards-Version and debhelper compat
[filters.git] / kraut.dir / kraut.c
... / ...
CommitLineData
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
9const char *yylex(void);
10
11int main()
12{
13 char *line;
14
15 while((line = (char *) yylex())) {
16 printf("%s", line);
17 }
18
19 return 0;
20}
21
22int yywrap ()
23{
24 return (1);
25}
This page took 0.020948 seconds and 4 git commands to generate.