/*- * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. * * %sccs.include.redist.c% * * @(#)stty.h 8.1 (Berkeley) 05/31/93 */ #include #include struct info { int fd; /* file descriptor */ int ldisc; /* line discipline */ int off; /* turn off */ int set; /* need set */ int wset; /* need window set */ char *arg; /* argument */ struct termios t; /* terminal info */ struct winsize win; /* window info */ }; struct cchar { char *name; int sub; u_char def; }; enum FMT { NOTSET, GFLAG, BSD, POSIX }; #define LINELENGTH 72