home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume23 / trn / part14 / kfile.h < prev    next >
C/C++ Source or Header  |  1991-08-22  |  720b  |  28 lines

  1. /* $Header: kfile.h,v 4.3.3.1 91/01/16 02:46:29 davison Trn $
  2.  *
  3.  * $Log:    kfile.h,v $
  4.  * Revision 4.3.3.1  91/01/16  02:46:29  davison
  5.  * Added optional prototyping.
  6.  * 
  7.  * Revision 4.3  85/05/01  11:42:00  lwall
  8.  * Baseline for release with 4.3bsd.
  9.  * 
  10.  */
  11.  
  12. #define KF_GLOBAL 0
  13. #define KF_LOCAL 1
  14.  
  15. #ifdef KILLFILES
  16. EXT FILE *globkfp INIT(Nullfp);        /* global article killer file */
  17. EXT FILE *localkfp INIT(Nullfp);    /* local (for this newsgroup) */
  18.                     /*  article killer file */
  19. #endif
  20.  
  21. void    kfile_init ANSI((void));
  22. int    do_kfile ANSI((FILE *,int));
  23. void    kill_unwanted ANSI((ART_NUM,char *,int));
  24. int    edit_kfile ANSI((void));
  25. void    open_kfile ANSI((int));
  26. void    kf_append ANSI((char *));
  27. void    setthru ANSI((ART_NUM));
  28.