make l_window() accept "*" again
[unix-history] / usr / src / usr.bin / window / wwdata.c
CommitLineData
41910298 1#ifndef lint
7aaa6a9f 2static char *sccsid = "@(#)wwdata.c 3.7 83/09/17";
41910298
EW
3#endif
4
5#include "ww.h"
e908bfac 6#include "tt.h"
41910298
EW
7
8struct ww wwhead = {
9 &wwhead, &wwhead
10};
11
12struct ww_tty wwnewtty = {
13 { 0, 0, -1, -1, 0 },
14 { -1, -1, -1, -1, -1, -1 },
15 { -1, -1, -1, -1, -1, -1 },
16 0, 0, 0
17};
18
19int tt_h19();
7aaa6a9f 20int tt_f100();
41910298
EW
21int tt_generic();
22struct tt_tab tt_tab[] = {
3130283e 23 { "h19", 3, tt_h19 },
7aaa6a9f 24 { "f100", 4, tt_f100 },
3130283e 25 { "generic", 0, tt_generic },
41910298
EW
26 0
27};
c3f80cb5 28char *tt_strp = tt_strings;
41910298
EW
29
30int wwbaudmap[] = {
31 0,
32 50,
33 75,
34 110,
35 134,
36 150,
37 200,
38 300,
39 600,
40 1200,
41 1800,
42 2400,
43 4800,
44 9600,
45 19200,
46 38400
47};