tt cleanup and some bug fixes
[unix-history] / usr / src / usr.bin / window / tt.h
CommitLineData
17865084 1/*
14f251df 2 * @(#)tt.h 3.2 83/08/11
17865084
EW
3 */
4
5struct tt {
6 int (*tt_init)();
7 int (*tt_reset)();
8 int (*tt_cleanup)();
9 int (*tt_move)();
10 int (*tt_setinsert)();
11 int (*tt_setmodes)();
12 int (*tt_insline)();
13 int (*tt_delline)();
14 int (*tt_delchar)();
15 int (*tt_write)();
16 int (*tt_putc)();
17 int (*tt_blank)();
18 int (*tt_clreol)();
19 int (*tt_clreos)();
20 int (*tt_clear)();
21 int (*tt_window)();
22 int (*tt_flash)();
23 int tt_nrow;
24 int tt_ncol;
25 char *tt_frame;
26};
27
28struct tt tt;
29
30struct tt_tab {
31 char *tt_name;
32 int tt_len;
33 int (*tt_func)();
34};
35
36struct tt_tab tt_tab[];