summary refs log tree commit diff
path: root/chat.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-01 02:33:17 -0500
committerJune McEnroe <june@causal.agency>2020-02-01 02:33:17 -0500
commit03cb0d7c04d287ba95b26924620ece0855002ad5 (patch)
tree1906bd93e28d13b03b31da2e06ef70b1729b7252 /chat.c
parentAdd -v flag (diff)
downloadcatgirl-03cb0d7c04d287ba95b26924620ece0855002ad5.tar.gz
catgirl-03cb0d7c04d287ba95b26924620ece0855002ad5.zip
Add IDs and names
Diffstat (limited to 'chat.c')
-rw-r--r--chat.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/chat.c b/chat.c
index 5796085..462faa0 100644
--- a/chat.c
+++ b/chat.c
@@ -23,6 +23,13 @@
 
 #include "chat.h"
 
+char *idNames[IDCap] = {
+	[None] = "<none>",
+	[Debug] = "<debug>",
+	[Network] = "<network>",
+};
+size_t idNext = Network + 1;
+
 struct Self self;
 
 int main(int argc, char *argv[]) {
359f&follow=1'>Replace causal.agency with a simple mdoc pageJune McEnroe 2021-01-11Publish "Using vi"June McEnroe 2021-01-11Enable diff.colorMovedJune McEnroe 2021-01-10Set less search case-insensitiveJune McEnroe 2021-01-10Set EXINITJune McEnroe neovim is laggy as hell in my OpenBSD VM, so I switched to vi so I could type without getting frustrated. 2021-01-09Add c -t flag to print expression typeJune McEnroe Also add missing float case. 2021-01-05Update taglineJune McEnroe