home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 8.ddi / usr / include / sys / ascii.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-08  |  1.1 KB  |  53 lines

  1. /*    Copyright (c) 1990 UNIX System Laboratories, Inc.    */
  2. /*    Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T    */
  3. /*      All Rights Reserved      */
  4.  
  5. /*    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF         */
  6. /*    UNIX System Laboratories, Inc.                         */
  7. /*    The copyright notice above does not evidence any       */
  8. /*    actual or intended publication of such source code.    */
  9.  
  10. #ifndef _SYS_ASCII_H
  11. #define _SYS_ASCII_H
  12.  
  13. #ident    "@(#)/usr/include/sys/ascii.h.sl 1.1 4.0 12/08/90 56356 AT&T-USL"
  14.  
  15. #define A_NUL    0
  16. #define A_SOH    1
  17. #define A_STX    2
  18. #define A_ETX    3
  19. #define A_EOT    4
  20. #define A_ENQ    5
  21. #define A_ACK    6
  22. #define A_BEL    7
  23. #define A_BS    8
  24. #define A_HT    9
  25. #define A_NL    10
  26. #define A_LF    10
  27. #define A_VT    11
  28. #define A_FF    12
  29. #define A_NP    12
  30. #define A_CR    13
  31. #define A_SO    14
  32. #define A_SI    15
  33. #define A_DLE    16
  34. #define A_DC1    17
  35. #define A_DC2    18
  36. #define A_DC3    19
  37. #define A_DC4    20
  38. #define A_NAK    21
  39. #define A_SYN    22
  40. #define A_ETB    23
  41. #define A_CAN    24
  42. #define A_EM    25
  43. #define A_SUB    26
  44. #define A_ESC    27
  45. #define A_FS    28
  46. #define A_GS    29
  47. #define A_RS    30
  48. #define A_US    31
  49. #define A_DEL    127
  50. #define A_CSI    0x9b
  51.  
  52. #endif /* _SYS_ASCII_H */
  53.