Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/waterbox/libc/includes/iso646.h
2 views
1
/* Alternative spellings <iso646.h>
2
3
This file is part of the Public Domain C Library (PDCLib).
4
Permission is granted to use, modify, and / or redistribute at will.
5
*/
6
7
#ifndef _PDCLIB_ISO646_H
8
#define _PDCLIB_ISO646_H _PDCLIB_ISO646_H
9
10
#ifndef __cplusplus
11
#define and &&
12
#define and_eq &=
13
#define bitand &
14
#define bitor |
15
#define compl ~
16
#define not !
17
#define not_eq !=
18
#define or ||
19
#define or_eq |=
20
#define xor ^
21
#define xor_eq ^=
22
#endif
23
24
#endif
25
26