]> pd.if.org Git - pdclib/blob - includes/iso646.h
Comment cleanups.
[pdclib] / includes / iso646.h
1 /* Alternative spellings <iso646.h>
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #ifndef _PDCLIB_ISO646_H
8 #define _PDCLIB_ISO646_H _PDCLIB_ISO646_H
9
10 #define and &&
11 #define and_eq &=
12 #define bitand &
13 #define bitor |
14 #define compl ~
15 #define not !
16 #define not_eq !=
17 #define or ||
18 #define or_eq |=
19 #define xor ^
20 #define xor_eq ^=
21
22 #endif
23