home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / trn_12.zip / src / intrp.h < prev    next >
Text File  |  1993-12-04  |  2KB  |  54 lines

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