xref: /original-bsd/old/roff/common_source/tw.h (revision 42c7e7a1)
1 /*-
2  * Copyright (c) 1991 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.proprietary.c%
6  *
7  *	@(#)tw.h	4.3 (Berkeley) 04/18/91
8  */
9 
10 /* typewriter driving table structure*/
11 struct {
12 	int bset;
13 	int breset;
14 	int Hor;
15 	int Vert;
16 	int Newline;
17 	int Char;
18 	int Em;
19 	int Halfline;
20 	int Adj;
21 	char *twinit;
22 	char *twrest;
23 	char *twnl;
24 	char *hlr;
25 	char *hlf;
26 	char *flr;
27 	char *bdon;
28 	char *bdoff;
29 	char *ploton;
30 	char *plotoff;
31 	char *up;
32 	char *down;
33 	char *right;
34 	char *left;
35 	char *codetab[256-32];
36 	char *zzz;
37 	} t;
38