Loading...
Searching...
No Matches
Go to the documentation of this file.
11#if __has_include(<Rtypes.h>)
14#define BIT(n) (1ULL << (n))
15#define SETBIT(n, i) ((n) |= BIT(i))
16#define CLRBIT(n, i) ((n) &= ~BIT(i))
17#define TESTBIT(n, i) ((bool) (((n) &BIT(i)) != 0))