iso646.h (279B)
1 /* iso646.h -- C11 7.9 -- Alternative spellings */ 2 #ifndef KIT_ISO646_H 3 #define KIT_ISO646_H 4 5 #define and && 6 #define and_eq &= 7 #define bitand & 8 #define bitor | 9 #define compl ~ 10 #define not ! 11 #define not_eq != 12 #define or || 13 #define or_eq |= 14 #define xor ^ 15 #define xor_eq ^= 16 17 #endif