home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / trn_12.zip / src / kfile.h < prev    next >
C/C++ Source or Header  |  1991-12-04  |  1KB  |  39 lines

  1. /* $Id: kfile.h,v 4.4 1991/09/09 20:18:23 sob Exp sob $
  2.  *
  3.  * $Log: kfile.h,v $
  4.  * Revision 4.4  1991/09/09  20:18:23  sob
  5.  * release 4.4
  6.  *
  7.  *
  8.  * 
  9.  */
  10. /* This software is Copyright 1991 by Stan Barber. 
  11.  *
  12.  * Permission is hereby granted to copy, reproduce, redistribute or otherwise
  13.  * use this software as long as: there is no monetary profit gained
  14.  * specifically from the use or reproduction of this software, it is not
  15.  * sold, rented, traded or otherwise marketed, and this copyright notice is
  16.  * included prominently in any copy made. 
  17.  *
  18.  * The author make no claims as to the fitness or correctness of this software
  19.  * for any use whatsoever, and it is provided as is. Any use of this software
  20.  * is at the user's own risk. 
  21.  */
  22.  
  23. #define KF_GLOBAL 0
  24. #define KF_LOCAL 1
  25.  
  26. #ifdef KILLFILES
  27. EXT FILE *globkfp INIT(Nullfp);        /* global article killer file */
  28. EXT FILE *localkfp INIT(Nullfp);    /* local (for this newsgroup) */
  29.                     /*  article killer file */
  30. #endif
  31.  
  32. void    kfile_init ANSI((void));
  33. int    do_kfile ANSI((FILE *,int));
  34. void    kill_unwanted ANSI((ART_NUM,char *,int));
  35. int    edit_kfile ANSI((void));
  36. void    open_kfile ANSI((int));
  37. void    kf_append ANSI((char *));
  38. void    setthru ANSI((ART_NUM));
  39.