Makefile cleaup
[thunix.git] / include / console.h
blob7cd28a4b2f50512d9393f07965585b6d3e059b55
1 #ifndef CONSOLE_H
2 #define CONSOLE_H
4 #define ORIG_X (0)
5 #define ORIG_Y (0)
6 #define ORIG_VIDEO_COLS (80)
7 #define ORIG_VIDEO_LINES (25)
9 void get_cursor(int *, int *);
10 void set_cursor(void);
11 void con_init(void);
12 void con_write(char *buf, int nr);
14 extern int puts(char *);
15 extern char get_char();
16 extern void command_read(char *);
19 #endif /* console.h */