4 lines
No EOL
92 B
C
4 lines
No EOL
92 B
C
#pragma once
|
|
|
|
#define FLAG_SET(x, flag) x |= (flag)
|
|
#define FLAG_UNSET(x, flag) x &= ~(flag) |