move to debhelper compat 13, hopefully fixes cross-building
[debian/cpmtools] / term.h
1 #ifndef TERM_H
2 #define TERM_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 extern void term_init(void);
9 extern void term_exit(void);
10 extern void term_clear(void);
11 extern void term_xy(int x, int y);
12 extern void term_printf(char const *fmt, ...);
13 extern void term_putch(char ch);
14 extern int term_getch(void);
15 extern void term_reverse(int on);
16 extern int term_lines(void);
17 extern int term_cols(void);
18
19 #ifdef __cplusplus
20 }
21 #endif
22
23 #endif