]> pd.if.org Git - pdclib/blob - iso646.h
Added note about v0.1 not being much tested.
[pdclib] / iso646.h
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* 7.9 Alternative spellings <iso646.h>
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #ifndef _PDCLIB_ISO646_H
12 #define _PDCLIB_ISO646_H _PDCLIB_ISO646_H
13
14 #define and &&
15 #define and_eq &=
16 #define bitand &
17 #define bitor |
18 #define compl \98
19 #define not !
20 #define not_eq !=
21 #define or ||
22 #define or_eq |=
23 #define xor \88
24 #define xor_eq \88=
25
26 #endif
27