diff options
author | June McEnroe <june@causal.agency> | 2019-10-29 23:04:58 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-10-29 23:04:58 -0400 |
commit | eeac134e697f77d85ecbb8d6bd572a4b592433aa (patch) | |
tree | 611c18cdc27f146aa96ec3f5c652dd4fc0466ea2 /bounce.h | |
parent | Do not duplicate origin on nick change (diff) | |
download | pounce-eeac134e697f77d85ecbb8d6bd572a4b592433aa.tar.gz pounce-eeac134e697f77d85ecbb8d6bd572a4b592433aa.zip |
Allocate ring buffer at runtime
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 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); |