Home | History | Annotate | Line # | Download | only in warp
intrp.h revision 1.1
      1 /* $Header: /tank/opengrok/rsync2/NetBSD/src/games/warp/intrp.h,v 1.1 2020/11/09 23:37:05 kamil Exp $
      2  *
      3  * $Log: intrp.h,v $
      4  * Revision 1.1  2020/11/09 23:37:05  kamil
      5  * Add Warp Kit, Version 7.0 by Larry Wall
      6  *
      7  * Warp is a real-time space war game that doesn't get boring very quickly.
      8  * Read warp.doc and the manual page for more information.
      9  *
     10  * games/warp originally distributed with 4.3BSD-Reno, is back to the BSD
     11  * world via NetBSD. Its remnants were still mentioned in games/Makefile.
     12  *
     13  * Larry Wall, the original author and the copyright holder, generously
     14  * donated the game and copyright to The NetBSD Foundation, Inc.
     15  *
     16  * Import the game sources as-is from 4.3BSD-Reno, with the cession
     17  * of the copyright and license to BSD-2-clause NetBSD-style.
     18  *
     19  * Signed-off-by: Larry Wall <larry (at) wall.org>
     20  * Signed-off-by: Kamil Rytarowski <kamil (at) netbsd.org>
     21  *
     22  * Revision 7.0.1.1  86/12/12  16:59:45  lwall
     23  * Baseline for net release.
     24  *
     25  * Revision 7.0  86/10/08  15:12:27  lwall
     26  * Split into separate files.  Added amoebas and pirates.
     27  *
     28  */
     29 
     30 EXT char *origdir INIT(Nullch);		/* cwd when warp invoked */
     31 EXT char *homedir INIT(Nullch);		/* login directory */
     32 EXT char *dotdir INIT(Nullch);		/* where . files go */
     33 EXT char *logname INIT(Nullch);		/* login id */
     34 EXT char *hostname;	/* host name */
     35 EXT char *realname INIT(Nullch);	/* real name from /etc/passwd */
     36 
     37 void    intrp_init();
     38 char	*filexp();
     39 char	*dointerp();
     40 void	interp();
     41 char	*getrealname();
     42