main kernel startup, libc, console tty, asmops, build flags fixes
[bootcensus] / src / contty.h
1 #ifndef CONTTY_H_
2 #define CONTTY_H_
3
4 int con_init(void);
5 void con_show_cursor(int show);
6 void con_cursor(int x, int y);
7 void con_fgcolor(int c);
8 void con_bgcolor(int c);
9 void con_clear(void);
10 void con_putchar(int c);
11
12 #endif  /* CONTTY_H_ */