home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / iso646.h < prev    next >
C/C++ Source or Header  |  1998-06-16  |  419b  |  21 lines

  1. /* iso646.h standard header */
  2. #ifndef _ISO646
  3. #define _ISO646
  4. #define and        &&
  5. #define and_eq    &=
  6. #define bitand    &
  7. #define bitor    |
  8. #define compl    ~
  9. #define not        !
  10. #define not_eq    !=
  11. #define or        ||
  12. #define or_eq    |=
  13. #define xor        ^
  14. #define xor_eq    ^=
  15. #endif /* _ISO646 */
  16.  
  17. /*
  18.  * Copyright (c) 1994 by P.J. Plauger.  ALL RIGHTS RESERVED. 
  19.  * Consult your license regarding permissions and restrictions.
  20.  */
  21.