home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / trn / part01 / intrp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-02  |  1.5 KB  |  46 lines

  1. /* $Id: intrp.h,v 4.4.2.1 1991/12/01 18:05:42 sob PATCH_2 sob $
  2.  *
  3.  * $Log: intrp.h,v $
  4.  * Revision 4.4.2.1  1991/12/01  18:05:42  sob
  5.  * Patchlevel 2 changes
  6.  *
  7.  * Revision 4.4  1991/09/09  20:18:23  sob
  8.  * release 4.4
  9.  *
  10.  *
  11.  * 
  12.  */
  13. /* This software is Copyright 1991 by Stan Barber. 
  14.  *
  15.  * Permission is hereby granted to copy, reproduce, redistribute or otherwise
  16.  * use this software as long as: there is no monetary profit gained
  17.  * specifically from the use or reproduction of this software, it is not
  18.  * sold, rented, traded or otherwise marketed, and this copyright notice is
  19.  * included prominently in any copy made. 
  20.  *
  21.  * The author make no claims as to the fitness or correctness of this software
  22.  * for any use whatsoever, and it is provided as is. Any use of this software
  23.  * is at the user's own risk. 
  24.  */
  25.  
  26. EXT char *lib INIT(Nullch);        /* news library */
  27. EXT char *rnlib INIT(Nullch);        /* private news program library */
  28. EXT char *origdir INIT(Nullch);        /* cwd when rn invoked */
  29. EXT char *homedir INIT(Nullch);        /* login directory */
  30. EXT char *dotdir INIT(Nullch);        /* where . files go */
  31. EXT char *logname INIT(Nullch);        /* login id */
  32. EXT char *sitename INIT(Nullch);    /* host name */
  33. EXT int perform_cnt;
  34.  
  35. #ifdef NEWSADMIN
  36.     EXT char newsadmin[] INIT(NEWSADMIN);/* news administrator */
  37.     EXT int newsuid INIT(0);
  38. #endif
  39.  
  40. void    intrp_init ANSI((char *));
  41. char    *filexp ANSI((char *));
  42. char    *dointerp ANSI((char *,int,char *,char *));
  43. void    interp ANSI((char *,int,char *));
  44. void    refscpy ANSI((char *,int,char *));
  45. char    *getrealname ANSI((long));
  46.