home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_04 / 1104016a < prev    next >
Text File  |  1993-02-05  |  236b  |  17 lines

  1. // Listing 1 -- the header <iso646.h>
  2.  
  3. #define and        &&
  4. #define and_eq    &=
  5. #define bitand    &
  6. #define bitor    |
  7. #define compl    ~
  8. #define ne        !=
  9. #define not        !
  10. #define or        ||
  11. #define or_eq    |=
  12. #define xor        ^
  13. #define xor_eq    ^=
  14.  
  15.  
  16.  
  17.