Restructure
[liquid-crystal-terminal.git] / terminal / term.h
1 #ifndef _H_TERM
2 #define _H_TERM
3
4 struct terminal {
5 unsigned char x;
6 unsigned char y;
7 char contents[COLS * ROWS];
8 };
9
10 void redraw(struct terminal *);
11 void scroll_up(struct terminal *);
12 void write(struct terminal *, char);
13
14 #endif