xref: /csrg-svn/games/tetris/screen.h (revision 60854)
157274Sbostic /*-
2*60854Sbostic  * Copyright (c) 1992, 1993
3*60854Sbostic  *	The Regents of the University of California.  All rights reserved.
457274Sbostic  *
557288Sbostic  * This code is derived from software contributed to Berkeley by
657288Sbostic  * Chris Torek and Darren F. Provine.
757288Sbostic  *
857274Sbostic  * %sccs.include.redist.c%
957274Sbostic  *
10*60854Sbostic  *	@(#)screen.h	8.1 (Berkeley) 05/31/93
1157274Sbostic  */
1257274Sbostic 
1357274Sbostic /*
1457274Sbostic  * Capabilities from TERMCAP (used in the score code).
1557274Sbostic  */
1657274Sbostic char *SEstr;			/* end standout mode */
1757274Sbostic char *SOstr;			/* begin standout mode */
1857274Sbostic 
1957274Sbostic /*
2057274Sbostic  * putpad() is for padded strings with count=1.
2157274Sbostic  */
2257274Sbostic #define	putpad(s)	tputs(s, 1, put)
2357274Sbostic 
2457274Sbostic int	put __P((int));		/* just calls putchar; for tputs */
2557274Sbostic void	scr_clear __P((void));
2657274Sbostic void	scr_end __P((void));
2757274Sbostic void	scr_init __P((void));
2857274Sbostic void	scr_msg __P((char *, int));
2957274Sbostic void	scr_set __P((void));
3057274Sbostic void	scr_update __P((void));
31