xref: /csrg-svn/games/tetris/screen.h (revision 57288)
157274Sbostic /*-
257274Sbostic  * Copyright (c) 1992 The Regents of the University of California.
357274Sbostic  * All rights reserved.
457274Sbostic  *
5*57288Sbostic  * This code is derived from software contributed to Berkeley by
6*57288Sbostic  * Chris Torek and Darren F. Provine.
7*57288Sbostic  *
857274Sbostic  * %sccs.include.redist.c%
957274Sbostic  *
10*57288Sbostic  *	@(#)screen.h	5.2 (Berkeley) 12/23/92
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