1 /*
2  *  SCREEN.H
3  *
4  *  Released to the public domain.
5  *
6  *  Prototypes for SCREEN.C.
7  */
8 
9 #ifndef __SCREEN_H__
10 #define __SCREEN_H__
11 
12 void cursor(char state);
13 unsigned int GetKey(void);
14 unsigned int KeyHit(void);
15 unsigned int ConvertKey(int ch);
16 
17 #endif
18