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