/* * Copyright (c) 1999 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * "Portions Copyright (c) 1999 Apple Computer, Inc. All Rights * Reserved. This file contains Original Code and/or Modifications of * Original Code as defined in and that are subject to the Apple Public * Source License Version 1.0 (the 'License'). You may not use this file * except in compliance with the License. Please obtain a copy of the * License at http://www.apple.com/publicsource and read it before using * this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License." * * @APPLE_LICENSE_HEADER_END@ */ /* 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