home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume11 / jotto / part01 / load.c < prev    next >
C/C++ Source or Header  |  1990-12-11  |  387b  |  29 lines

  1. /*
  2.  *    load
  3.  */
  4.  
  5. #include <stdio.h>
  6. #ifdef BSD
  7. #include <strings.h>
  8. #else
  9. #include <string.h>
  10. #endif
  11. #include "jotto.h"
  12.  
  13. extern    char    dict[DICTLEN][WORDLEN*2+1];
  14. extern    int    ndict;
  15. extern    FILE    *tape4;
  16.  
  17. load()
  18. {
  19.     char lline[80+1];
  20.  
  21.     rewind(tape4);
  22.     ndict=0;
  23.     while (fgets(lline, 80, tape4)) {
  24.         strncpy(dict[ndict], lline, WORDLEN*2);
  25.         dict[ndict++][WORDLEN*2] = '\0';
  26.     }
  27.     rewind(tape4);
  28. }
  29.