From 63628075fa930a09003f8f47987cb61c9972d2ea Mon Sep 17 00:00:00 2001 From: mintsuki Date: Thu, 17 Feb 2022 08:16:54 +0100 Subject: [PATCH] Add iso646.h --- iso646.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 iso646.h diff --git a/iso646.h b/iso646.h new file mode 100644 index 0000000..70a939d --- /dev/null +++ b/iso646.h @@ -0,0 +1,16 @@ +#ifndef __ISO646_H__ +#define __ISO646_H__ + +#define and && +#define and_eq &= +#define bitand & +#define bitor | +#define compl ~ +#define not ! +#define not_eq != +#define or || +#define or_eq |= +#define xor ^ +#define xor_eq ^= + +#endif