home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume4 / bog / showdict.c < prev    next >
C/C++ Source or Header  |  1988-03-09  |  264b  |  22 lines

  1. /* vi: set tabstop=4 : */
  2.  
  3. #include <stdio.h>
  4.  
  5. #include "bog.h"
  6.  
  7. /*BOGUS*/
  8. struct dictindex dictindex[1];
  9. int wordlen;
  10.  
  11. main(argc, argv)
  12. int argc;
  13. char **argv;
  14. {
  15.     char *p;
  16.     char *nextword();
  17.  
  18.     while ((p = nextword(stdin)) != (char *) NULL)
  19.         printf("%s\n", p);
  20. }
  21.  
  22.