home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d166 / stevie.lha / Stevie / source / ascii.h < prev    next >
Text File  |  1988-11-22  |  585b  |  26 lines

  1. /*
  2.  * STEVIE - Simply Try this Editor for VI Enthusiasts
  3.  *
  4.  * Code Contributions By : Tim Thompson           twitch!tjt
  5.  *                         Tony Andrews           onecom!wldrdg!tony 
  6.  *                         G. R. (Fred) Walter    watmath!watcgl!grwalter 
  7.  */
  8.  
  9. /*
  10.  * Definitions of various common control characters 
  11.  */
  12.  
  13. #define    NUL        '\000'
  14. #define    BS        '\010'
  15. #define    TAB        '\011'
  16. #define    NL        '\012'
  17. #define    NL_STR        "\012"
  18. #define    CR        '\015'
  19. #define    ESC        '\033'
  20. #define    ESC_STR        "\033"
  21.  
  22. #define    UNDO_SHIFTJ    '\333'
  23. #define    UNDO_SHIFTJ_STR    "\333"
  24.  
  25. #define    CTRL(x)    ((x) & 0x1f)
  26.