Blame termios/sys/ttychars.h

Packit 6c4009
/*-
Packit 6c4009
 * Copyright (c) 1982, 1986, 1990, 1993
Packit 6c4009
 *	The Regents of the University of California.  All rights reserved.
Packit 6c4009
 *
Packit 6c4009
 * Redistribution and use in source and binary forms, with or without
Packit 6c4009
 * modification, are permitted provided that the following conditions
Packit 6c4009
 * are met:
Packit 6c4009
 * 1. Redistributions of source code must retain the above copyright
Packit 6c4009
 *    notice, this list of conditions and the following disclaimer.
Packit 6c4009
 * 2. Redistributions in binary form must reproduce the above copyright
Packit 6c4009
 *    notice, this list of conditions and the following disclaimer in the
Packit 6c4009
 *    documentation and/or other materials provided with the distribution.
Packit 6c4009
 * 4. Neither the name of the University nor the names of its contributors
Packit 6c4009
 *    may be used to endorse or promote products derived from this software
Packit 6c4009
 *    without specific prior written permission.
Packit 6c4009
 *
Packit 6c4009
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
Packit 6c4009
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 6c4009
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit 6c4009
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
Packit 6c4009
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 6c4009
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit 6c4009
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit 6c4009
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Packit 6c4009
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
Packit 6c4009
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit 6c4009
 * SUCH DAMAGE.
Packit 6c4009
 *
Packit 6c4009
 *	@(#)ttychars.h	8.2 (Berkeley) 1/4/94
Packit 6c4009
 */
Packit 6c4009
Packit 6c4009
/*
Packit 6c4009
 * 4.3 COMPATIBILITY FILE
Packit 6c4009
 *
Packit 6c4009
 * User visible structures and constants related to terminal handling.
Packit 6c4009
 */
Packit 6c4009
#ifndef _SYS_TTYCHARS_H
Packit 6c4009
#define	_SYS_TTYCHARS_H 1
Packit 6c4009
Packit 6c4009
struct ttychars {
Packit 6c4009
	char	tc_erase;	/* erase last character */
Packit 6c4009
	char	tc_kill;	/* erase entire line */
Packit 6c4009
	char	tc_intrc;	/* interrupt */
Packit 6c4009
	char	tc_quitc;	/* quit */
Packit 6c4009
	char	tc_startc;	/* start output */
Packit 6c4009
	char	tc_stopc;	/* stop output */
Packit 6c4009
	char	tc_eofc;	/* end-of-file */
Packit 6c4009
	char	tc_brkc;	/* input delimiter (like nl) */
Packit 6c4009
	char	tc_suspc;	/* stop process signal */
Packit 6c4009
	char	tc_dsuspc;	/* delayed stop process signal */
Packit 6c4009
	char	tc_rprntc;	/* reprint line */
Packit 6c4009
	char	tc_flushc;	/* flush output (toggles) */
Packit 6c4009
	char	tc_werasc;	/* word erase */
Packit 6c4009
	char	tc_lnextc;	/* literal next character */
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
#ifdef __USE_OLD_TTY
Packit 6c4009
#include <sys/ttydefaults.h>	/* to pick up character defaults */
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
#endif /* sys/ttychars.h */