summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-11-09 08:44:23 -0500
committerJune McEnroe <june@causal.agency>2019-11-09 08:44:23 -0500
commit2f39eabb2ddc945217a92247724e65f4eb485656 (patch)
treef85ad120e5fb4ae86c9f19427c907168de50b675
parentCheck that password is hashed (diff)
downloadpounce-2f39eabb2ddc945217a92247724e65f4eb485656.tar.gz
pounce-2f39eabb2ddc945217a92247724e65f4eb485656.zip
Define macro for bit flag enums
-rw-r--r--bounce.h1
-rw-r--r--client.c8
2 files changed, 5 insertions, 4 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;
diff --git a/client.c b/client.c
index 32b5b0f..6ac0869 100644
--- a/client.c
+++ b/client.c
@@ -31,10 +31,10 @@
 static size_t count;
 
 enum Need {
-	NeedNick = 1 << 0,
-	NeedUser = 1 << 1,
-	NeedPass = 1 << 2,
-	NeedCapEnd = 1 << 3,
+	BIT(NeedNick),
+	BIT(NeedUser),
+	BIT(NeedPass),
+	BIT(NeedCapEnd),
 };
 
 struct Client {