xref: /original-bsd/games/tetris/screen.h (revision 4ee49cc0)
1 /*-
2  * Copyright (c) 1992, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Chris Torek and Darren F. Provine.
7  *
8  * %sccs.include.redist.c%
9  *
10  *	@(#)screen.h	8.1 (Berkeley) 05/31/93
11  */
12 
13 /*
14  * Capabilities from TERMCAP (used in the score code).
15  */
16 char *SEstr;			/* end standout mode */
17 char *SOstr;			/* begin standout mode */
18 
19 /*
20  * putpad() is for padded strings with count=1.
21  */
22 #define	putpad(s)	tputs(s, 1, put)
23 
24 int	put __P((int));		/* just calls putchar; for tputs */
25 void	scr_clear __P((void));
26 void	scr_end __P((void));
27 void	scr_init __P((void));
28 void	scr_msg __P((char *, int));
29 void	scr_set __P((void));
30 void	scr_update __P((void));
31