home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / relay / fsys.c < prev    next >
C/C++ Source or Header  |  1995-04-27  |  764b  |  58 lines

  1. /*
  2.  * news sys file reading functions (fast, big, in-memory version)
  3.  * formerly libbig/sys.fast.c
  4.  */
  5.  
  6. #include <stdio.h>
  7. #include <sys/types.h>
  8. #include "news.h"
  9. #include "ngmatch.h"
  10. #include "system.h"
  11.  
  12. /* imports */
  13. extern struct system *currsys, *firstsys;
  14.  
  15. /* private */
  16. static struct system *thissys = NULL;
  17.  
  18. void
  19. remmysys(sys)                /* remember this system */
  20. struct system *sys;
  21. {
  22.     thissys = sys;
  23. }
  24.  
  25. struct system *
  26. mysysincache()                /* optimisation */
  27. {
  28.     return thissys;
  29. }
  30.  
  31. void
  32. setupsys(fp)
  33. FILE *fp;
  34. {
  35.     rewind(fp);
  36. }
  37.  
  38. boolean
  39. donesys()
  40. {
  41.     return NO;
  42. }
  43.  
  44. /* ARGSUSED */
  45. void
  46. rewsys(fp)
  47. FILE *fp;
  48. {
  49.     currsys = firstsys;
  50. }
  51.  
  52. void
  53. advcurrsys()    /* advance currsys to the next in-core sys entry, if any. */
  54. {
  55.     if (currsys != NULL)
  56.         currsys = currsys->sy_next;
  57. }
  58.