-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.h
20 lines (18 loc) · 835 Bytes
/
utils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/***************************************************************************\
|* *|
|* utils.h: A version of Tetris to run on ordinary terminals, *|
|* (ie., not needing a workstation, so should available *|
|* to peasant Newwords+ users. This module supplies all *|
|* the function that I will need, but which are not *|
|* intrinsically a part of Tetris itself. *|
|* *|
|* Author: Mike Taylor ([email protected]) *|
|* Started: Fri May 26 12:26:05 BST 1989 *|
|* *|
\***************************************************************************/
extern char *basename ();
extern char *form (char *fmt, ...);
extern void die ();
extern void get_termcap ();
extern void flush_keyboard ();
/*-------------------------------------------------------------------------*/