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 {
logmsg'> Only matches functions declared at the beginnings of lines, but I'm fine with that. 2021-01-20Add messy sh lexerJune McEnroe Surprisingly seems to work for everything I looked at in my repos. 2021-01-20Add all target to git.causal.agency MakefileJune McEnroe 2021-01-20Remove Lua supportJune McEnroe Lua support is unused and the dlsym fwrite/write hacks horrify me. Clean it up. 2021-01-20Fix tests for diff spansJune McEnroe 2021-01-20Avoid matching ':' in make tagsJune McEnroe Otherwise a :: rule includes one of the ':'s in the tag name. 2021-01-19Prefer tag matches not preceded by [[:alnum:]]June McEnroe Otherwise the "id" in "void" matches for "void id". 2021-01-19Escape \ and / in mtags search patternsJune McEnroe 2021-01-20Use mtags in source-filterJune McEnroe 2021-01-19Add mtags to generate tags for make and mdocJune McEnroe 2021-01-19Map tags to IDs using only [[:alnum:]-._]June McEnroe 2021-01-19Don't use a pager if reading standard inputJune McEnroe 2021-01-19Support BSD make syntax and match *.amJune McEnroe These don't really go together, but... 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe Otherwise it ends up going into Shell state. 2021-01-18Allow matching lexers using first input lineJune McEnroe