home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) 1991 NeXT Computer, Inc. All rights reserved.
- *
- * File: mon/ascii_codes.h
- *
- * Non-printing ASCII codes.
- *
- * HISTORY
- * 02-Oct-91 Doug Mitchell at NeXT
- * Created.
- */
-
- #define nul 0x000
- #define soh 0x001
- #define stx 0x002
- #define etx 0x003
- #define eot 0x004
- #define enq 0x005
- #define ack 0x006
- #define bel 0x007
- #define bs 0x008
- #define ht 0x009
- #define nl 0x00a
- #define vt 0x00b
- #define np 0x00c
- #define cr 0x00d
- #define so 0x00e
- #define si 0x00f
- #define dle 0x010
- #define dc1 0x011
- #define dc2 0x012
- #define dc3 0x013
- #define dc4 0x014
- #define nak 0x015
- #define syn 0x016
- #define etb 0x017
- #define can 0x018
- #define em 0x019
- #define sub 0x01a
- #define esc 0x01b
- #define fs 0x01c
- #define gs 0x01d
- #define rs 0x01e
- #define us 0x01f
- #define del 0x07f
-