date and time created 91/05/12 22:30:02 by william
[unix-history] / usr / src / bin / stty / stty.h
CommitLineData
7ea90dbf
KB
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) %G%
8 */
9
10struct modes {
11 char *name;
12 long set;
13 long unset;
14};
15
16struct cchar {
17 char *name;
18 int sub;
19 u_char def;
20};
21
22enum FMT { NOTSET, GFLAG, BSD, POSIX };
23
24#define LINELENGTH 72