tumbledemerald-legacy/agbcc/ginclude/iso646.h

16 lines
275 B
C
Raw Normal View History

2022-05-19 19:14:13 +02:00
/* Macros for C programs written in national variants of ISO 646. */
#ifndef __cplusplus
#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