home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / digital marsC compier / dm / include / iso646.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-03  |  234 b   |  18 lines

  1.  
  2. // www.digitalmars.com
  3.  
  4. #pragma once
  5.  
  6. #define and    &&
  7. #define    and_eq    &=
  8. #define    bitand    &
  9. #define    bitor    |
  10. #define    compl    ~
  11. #define    not    !
  12. #define    not_eq    !=
  13. #define    or    ||
  14. #define    or_eq    |=
  15. #define    xor    ^
  16. #define    xor_eq    ^=
  17.  
  18.