xref: /original-bsd/bin/stty/stty.h (revision a91856c6)
1 /*-
2  * Copyright (c) 1991 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)stty.h	5.1 (Berkeley) 05/02/91
8  */
9 
10 struct modes {
11 	char *name;
12 	long set;
13 	long unset;
14 };
15 
16 struct cchar {
17 	char *name;
18 	int sub;
19 	u_char def;
20 };
21 
22 enum FMT { NOTSET, GFLAG, BSD, POSIX };
23 
24 #define	LINELENGTH	72
25