The <iso646.h> library allows you to type in alternative spellings for equality and logical operations. One of the macros describe token operators english-styled. For example (The - symbol indicates comparison E.g., english - token):
and - &&
and_eq - &=
bitand - &
bitor - |
compl - ~
not - !
not_eq - !=
or - ||
or_eq - |=
xor - ^
xor_eq - ^=
Note: There is no eq. In fact, the eq macro doesn't exist in ISO C.
Usage:
#include <iso646.h>










0 comments