1 /*
2   Shared
3   Routines that could go in the wio module, but are common across
4   all platforms.
5   JBS 15 June 1994
6 */
7 
8 #ifndef _SHARED_
9 
10 #define _SHARED_
11 
12 #include "types.h"
13 
14 void display(byte *);
15 void save_cursor(void);
16 void restore_cursor(void);
17 int getline(const byte *, char *, int);
18 void out_char(word);
19 void raw_display(const byte *);
20 int kbd_hit(void);
21 
22 #endif
23