home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
games
/
volume4
/
bog
/
showdict.c
< prev
next >
Wrap
C/C++ Source or Header
|
1988-03-09
|
264b
|
22 lines
/* vi: set tabstop=4 : */
#include <stdio.h>
#include "bog.h"
/*BOGUS*/
struct dictindex dictindex[1];
int wordlen;
main(argc, argv)
int argc;
char **argv;
{
char *p;
char *nextword();
while ((p = nextword(stdin)) != (char *) NULL)
printf("%s\n", p);
}