mapnl option to window
[unix-history] / usr / src / usr.bin / window / wwdata.c
CommitLineData
41910298 1#ifndef lint
7edc52ec 2static char sccsid[] = "@(#)wwdata.c 3.11 %G%";
41910298
EW
3#endif
4
5#include "ww.h"
e908bfac 6#include "tt.h"
41910298 7
41910298 8int tt_h19();
7aaa6a9f 9int tt_f100();
41910298
EW
10int tt_generic();
11struct tt_tab tt_tab[] = {
3130283e 12 { "h19", 3, tt_h19 },
7aaa6a9f 13 { "f100", 4, tt_f100 },
3130283e 14 { "generic", 0, tt_generic },
41910298
EW
15 0
16};
17
18int wwbaudmap[] = {
19 0,
20 50,
21 75,
22 110,
23 134,
24 150,
25 200,
26 300,
27 600,
28 1200,
29 1800,
30 2400,
31 4800,
32 9600,
33 19200,
34 38400
35};