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

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