xref: /openbsd/bin/ksh/tty.h (revision 891a519f)
1 /*	$OpenBSD: tty.h,v 1.6 2015/09/25 11:58:14 nicm Exp $	*/
2 
3 /*
4 	tty.h -- centralized definitions for a variety of terminal interfaces
5 
6 	created by DPK, Oct. 1986
7 
8 	Rearranged to work with autoconf, added TTY_state, get_tty/set_tty
9 						Michael Rendell, May '94
10 
11 	last edit:	30-Jul-1987	D A Gwyn
12 */
13 
14 #include <termios.h>
15 
16 extern int		tty_fd;		/* dup'd tty file descriptor */
17 extern int		tty_devtty;	/* true if tty_fd is from /dev/tty */
18 extern struct termios	tty_state;	/* saved tty state */
19 
20 extern void	tty_init(int);
21 extern void	tty_close(void);
22