test timing and input handling
[ansitris] / src / ansi.h
1 #ifndef ANSI_H_
2 #define ANSI_H_
3
4 void ansi_reset(void);
5 void ansi_clearscr(void);
6
7 void ansi_setcursor(int row, int col);
8 void ansi_cursor(int show);
9
10 /* convert a PC cga/ega/vga char+attr to an ANSI sequence and write it to stdout */
11 void ansi_ibmchar(unsigned char c, unsigned char attr);
12
13 #endif  /* ANSI_H_ */