summary refs log tree commit diff
path: root/bounce.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-10-29 23:04:58 -0400
committerJune McEnroe <june@causal.agency>2019-10-29 23:04:58 -0400
commiteeac134e697f77d85ecbb8d6bd572a4b592433aa (patch)
tree611c18cdc27f146aa96ec3f5c652dd4fc0466ea2 /bounce.h
parentDo not duplicate origin on nick change (diff)
downloadpounce-eeac134e697f77d85ecbb8d6bd572a4b592433aa.tar.gz
pounce-eeac134e697f77d85ecbb8d6bd572a4b592433aa.zip
Allocate ring buffer at runtime
Diffstat (limited to 'bounce.h')
-rw-r--r--bounce.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/bounce.h b/bounce.h
index c37ff61..5e6313b 100644
--- a/bounce.h
+++ b/bounce.h
@@ -59,6 +59,7 @@ static inline struct Message parse(char *line) {
 	return msg;
 }
 
+void ringAlloc(size_t len);
 void ringProduce(const char *line);
 size_t ringConsumer(const char *name);
 size_t ringDiff(size_t consumer);