summaryrefslogtreecommitdiff
path: root/sys/dev/wscons/ascii.h
blob: e5a508d5d9cc2b8bd76c1a0ddd10b8375cb05a03 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*	$OpenBSD: ascii.h,v 1.3 1996/10/30 22:41:35 niklas Exp $	*/
/*	$NetBSD: ascii.h,v 1.1 1996/04/12 02:00:42 cgd Exp $	*/

#define	ASCII_BEL	0x07		/* bell */
#define	ASCII_BS	0x08		/* backspace */
#define	ASCII_HT	0x09		/* horizontal tab */
#define	ASCII_LF	0x0a		/* line feed */
#define	ASCII_VT	0x0b		/* vertical tab(?); up one line */
#define	ASCII_NP	0x0c		/* next page; form feed */
#define	ASCII_CR	0x0d		/* carriage return */
#define	ASCII_ESC	0x1b		/* escape */