]> pd.if.org Git - pdclib/blob - includes/iso646.h
Minor doc extension.
[pdclib] / includes / iso646.h
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7 // Alternative spellings
8 // ----------------------------------------------------------------------------
9
10 #ifndef __ISO646_H
11 #define __ISO646_H __ISO646_H
12
13 // ----------------------------------------------------------------------------
14 // DEFINES
15
16 #define and &&
17 #define and_eq &=
18 #define bitand &
19 #define bitor |
20 #define compl ~
21 #define not !
22 #define not_eq !=
23 #define or ||
24 #define or_eq |=
25 #define xor ^
26 #define xor_eq ^=
27
28 #endif // __ISO646_H