mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-17 20:06:49 +00:00
23 lines
444 B
C
23 lines
444 B
C
|
/****************************************************************
|
||
|
*
|
||
|
* iso646.h - alternative operator spellings
|
||
|
*
|
||
|
****************************************************************/
|
||
|
|
||
|
#ifndef __iso646__
|
||
|
#define __iso646__
|
||
|
|
||
|
#define and &&
|
||
|
#define and_eq &=
|
||
|
#define bitand &
|
||
|
#define bitor |
|
||
|
#define compl ~
|
||
|
#define not !
|
||
|
#define not_eq !=
|
||
|
#define or ||
|
||
|
#define or_eq |=
|
||
|
#define xor ^
|
||
|
#define xor_eq ^=
|
||
|
|
||
|
#endif
|