]> pd.if.org Git - pdclib/blob - includes/iso646.h
Some non-7-bit chars have crept in. Fixed.
[pdclib] / includes / 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 ~
19 #define not !
20 #define not_eq !=
21 #define or ||
22 #define or_eq |=
23 #define xor ^
24 #define xor_eq ^=
25
26 #endif
27