home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume23 / trn / part14 / rn.h < prev    next >
Encoding:
Text File  |  1991-08-22  |  958 b   |  26 lines

  1. /* $Header: rn.h,v 4.3.3.1 91/01/16 03:28:44 davison Trn $
  2.  *
  3.  * $Log:    rn.h,v $
  4.  * Revision 4.3.3.1  91/01/16  03:28:44  davison
  5.  * Added optional prototyping.
  6.  * 
  7.  * Revision 4.3  85/05/01  11:48:19  lwall
  8.  * Baseline for release with 4.3bsd.
  9.  * 
  10.  */
  11.  
  12. EXT char *ngname INIT(Nullch);        /* name of current newsgroup */
  13. EXT int ngnlen INIT(0);            /* current malloced size of ngname */
  14. EXT char *ngdir INIT(Nullch);        /* same thing in directory name form */
  15. EXT int ngdlen INIT(0);            /* current malloced size of ngdir */
  16.  
  17. EXT NG_NUM ng INIT(0);        /* current newsgroup index into rcline and toread */
  18. EXT NG_NUM current_ng INIT(0);    /* stable current newsgroup so we can ditz with ng */
  19. EXT NG_NUM starthere INIT(0);   /* set to the first newsgroup with unread news on startup */
  20. EXT char *spool INIT(Nullch);        /* public news spool directory */
  21.  
  22. void    rn_init ANSI((void));
  23. void    main ANSI((int,char **));
  24. void    set_ngname ANSI((char *));
  25. char    *getngdir ANSI((char *));
  26.