Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
322 B

  1. /* $Header: /nw/tony/src/stevie/src/RCS/ascii.h,v 1.2 89/03/11 22:42:03 tony Exp $
  2. *
  3. * Definitions of various common control characters
  4. */
  5. #define NUL '\0'
  6. #define BS '\010'
  7. #define TAB '\011'
  8. #define NL '\012'
  9. #define CR '\015'
  10. #define ESC '\033'
  11. #define CTRL(x) ((x) & 0x1f)