]> pd.if.org Git - pdclib/blob - includes/iso646.h
80159fcb8a8e009bccab68508b59cd34b7442095
[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 #ifndef __cplusplus
13 #define and &&
14 #define and_eq &=
15 #define bitand &
16 #define bitor |
17 #define compl ~
18 #define not !
19 #define not_eq !=
20 #define or ||
21 #define or_eq |=
22 #define xor ^
23 #define xor_eq ^=
24 #endif
25
26 #endif
27