home *** CD-ROM | disk | FTP | other *** search
- /********************************************************************************
- * ascii.c
- *
- * ASCII Character Codes
- *
- * ⌐1989, Motorola Inc. All Rights Reserved
- ********************************************************************************/
-
- #define _H_ascii
-
-
- typedef enum {
- asciiNoMark = 0x00,
- asciiEnter = 0x03,
- asciiHelp = 0x05,
- asciiDelete = 0x08, asciiTab, asciiLineFeed,
- asciiReturn = 0x0D,
- asciiCmdMark = 0x11, asciiCheckMark, asciiDiamond, asciiApple,
- asciiEscape = 0x1B,
- asciiSpace = 0x20
- } AsciiCodes;
-