Imported Upstream version 0.1beta
[debian/yforth] / udio.h
1 /* yForth? - Written by Luca Padovani (C) 1996/97
2  * ------------------------------------------------------------------------
3  * This software is FreeWare as long as it comes with this header in each
4  * source file, anyway you can use it or any part of it whatever
5  * you want. It comes without any warranty, so use it at your own risk.
6  * ------------------------------------------------------------------------
7  * Module name: udio.h
8  * Abstract:    User device Input/Output functions.
9  */
10
11 void d_open(void);
12 void d_close(void);
13 void d_clrscr(void);
14 void d_clreol(void);
15 void d_setattr(Cell attr);
16 Cell d_getattr(void);
17 void d_gotoxy(Cell x, Cell y);
18 Cell d_wherex(void);
19 Cell d_wherey(void);
20 Char d_getch(void);
21 Cell d_kbhit(void);