home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / STEVIE.ZIP / ASCII.H next >
Text File  |  1988-06-09  |  377b  |  20 lines

  1. /*
  2.  * STEVIE - ST Editor for VI Enthusiasts   ...Tim Thompson...twitch!tjt...
  3.  *
  4.  * Extensive modifications by:  Tony Andrews       onecom!wldrdg!tony
  5.  *
  6.  */
  7.  
  8. /*
  9.  * Definitions of various common control characters
  10.  */
  11.  
  12. #define    NUL    '\0'
  13. #define    BS    '\010'
  14. #define    TAB    '\011'
  15. #define    NL    '\012'
  16. #define    CR    '\015'
  17. #define    ESC    '\033'
  18.  
  19. #define    CTRL(x)    ((x) & 0x1f)
  20.