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