diff options
author | June McEnroe <june@causal.agency> | 2019-11-09 08:44:23 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-09 08:44:23 -0500 |
commit | 2f39eabb2ddc945217a92247724e65f4eb485656 (patch) | |
tree | f85ad120e5fb4ae86c9f19427c907168de50b675 /bounce.h | |
parent | Check that password is hashed (diff) | |
download | pounce-2f39eabb2ddc945217a92247724e65f4eb485656.tar.gz pounce-2f39eabb2ddc945217a92247724e65f4eb485656.zip |
Define macro for bit flag enums
Diffstat (limited to 'bounce.h')
-rw-r--r-- | bounce.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bounce.h b/bounce.h index 2c997c3..c523227 100644 --- a/bounce.h +++ b/bounce.h @@ -30,6 +30,7 @@ #define SOURCE_URL "https://code.causal.agency/june/pounce" #define ORIGIN "irc.invalid" +#define BIT(x) x##Bit, x = 1 << x##Bit, _##x##Bit = x##Bit #define ARRAY_LEN(a) (sizeof(a) / sizeof(a[0])) typedef unsigned char byte; |