Bell 32V development
[unix-history] / usr / src / cmd / troff / term / tab300.c
CommitLineData
cc662ddf
TL
1#define INCH 240
2/*
3DASI300
4nroff driving tables
5width and code tables
6*/
7
8struct {
9 int bset;
10 int breset;
11 int Hor;
12 int Vert;
13 int Newline;
14 int Char;
15 int Em;
16 int Halfline;
17 int Adj;
18 char *twinit;
19 char *twrest;
20 char *twnl;
21 char *hlr;
22 char *hlf;
23 char *flr;
24 char *bdon;
25 char *bdoff;
26 char *ploton;
27 char *plotoff;
28 char *up;
29 char *down;
30 char *right;
31 char *left;
32 char *codetab[256-32];
33 int zzz;
34 } t = {
35/*bset*/ 0,
36/*breset*/ 0177420,
37/*Hor*/ INCH/60,
38/*Vert*/ INCH/48,
39/*Newline*/ INCH/6,
40/*Char*/ INCH/10,
41/*Em*/ INCH/10,
42/*Halfline*/ INCH/12,
43/*Adj*/ INCH/10,
44/*twinit*/ "\007",
45/*twrest*/ "\007",
46/*twnl*/ "\015\n",
47/*hlr*/ "",
48/*hlf*/ "",
49/*flr*/ "\013",
50/*bdon*/ "",
51/*bdoff*/ "",
52/*ploton*/ "\006",
53/*plotoff*/ "\033\006",
54/*up*/ "\013",
55/*down*/ "\n",
56/*right*/ " ",
57/*left*/ "\b",
58/*codetab*/
59#include "code.300"