4.4BSD snapshot (revision 8.1); add 1993 to copyright
[unix-history] / usr / src / bin / stty / stty.h
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* %sccs.include.redist.c%
*
* @(#)stty.h 8.1 (Berkeley) %G%
*/
#include <sys/ioctl.h>
#include <termios.h>
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