home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / trash / part01 / wcache.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-22  |  214 b   |  19 lines

  1. #include    <stdio.h>
  2. #include    "wcache.h"
  3. #include    "nels.h"
  4.  
  5. cent    wcache[CACHEZ];
  6.  
  7. void
  8. wcache_clear()
  9. {
  10.     int    i;
  11.  
  12. /*
  13. printf("clear\n");
  14. fflush(stdout);
  15. */
  16.     for (i = 0; i < nels(wcache); i++)
  17.         wcache[i].c_addr = 0;
  18. }
  19.