Home | History | Annotate | Line # | Download | only in wscons
ascii.h revision 1.2
      1  1.2  drochner /* $NetBSD: ascii.h,v 1.2 1998/06/15 17:38:39 drochner Exp $ */
      2  1.1  drochner 
      3  1.2  drochner #define	ASCII_NUL	0x00		/* nul */
      4  1.1  drochner #define	ASCII_BEL	0x07		/* bell */
      5  1.1  drochner #define	ASCII_BS	0x08		/* backspace */
      6  1.1  drochner #define	ASCII_HT	0x09		/* horizontal tab */
      7  1.1  drochner #define	ASCII_LF	0x0a		/* line feed */
      8  1.1  drochner #define	ASCII_VT	0x0b		/* vertical tab(?); up one line */
      9  1.1  drochner #define	ASCII_NP	0x0c		/* next page; form feed */
     10  1.1  drochner #define	ASCII_CR	0x0d		/* carriage return */
     11  1.1  drochner #define	ASCII_ESC	0x1b		/* escape */
     12