mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-05 02:07:22 +00:00
9d018cafe7
These mostly comply with C99 and C11, with some exceptions noted in comments.
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
|