Add iso646.h

This commit is contained in:
mintsuki 2022-02-17 08:16:54 +01:00
parent cd6b32c10a
commit 63628075fa

16
iso646.h Normal file
View File

@ -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