summary refs log tree commit diff
path: root/bounce.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-10-24 00:15:32 -0400
committerJune McEnroe <june@causal.agency>2019-10-24 00:15:32 -0400
commit5797e8b972435a01c0770f8ac71a923f97460c61 (patch)
treeffa3403765717eec93bb79c1840593416def39ab /bounce.h
parentRename some things (diff)
downloadpounce-5797e8b972435a01c0770f8ac71a923f97460c61.tar.gz
pounce-5797e8b972435a01c0770f8ac71a923f97460c61.zip
Make serverFormat public
Diffstat (limited to 'bounce.h')
-rw-r--r--bounce.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/bounce.h b/bounce.h
index 1c47094..aac414f 100644
--- a/bounce.h
+++ b/bounce.h
@@ -62,9 +62,10 @@ void serverLogin(
 	const char *nick, const char *user, const char *real
 );
 void serverAuth(void);
-void serverJoin(const char *join);
-void serverSend(const char *ptr, size_t len);
 void serverRecv(void);
+void serverSend(const char *ptr, size_t len);
+void serverFormat(const char *format, ...)
+	__attribute__((format(printf, 1, 2)));
 
 char *clientPass;
 struct Client *clientAlloc(struct tls *tls);
/span>Let 'make install' clear all cachefilesLars Hjemli 2006-12-11Fix cache algorithm loopholeLars Hjemli 2006-12-10Add version identifier in generated filesLars Hjemli 2006-12-10Add license file and copyright noticesLars Hjemli 2006-12-10Add caching infrastructureLars Hjemlif='/src/commit/www/git.causal.agency/source-filter.sh?id=ff9f7f414ee1e74d0a63d6072c5d2158e017f09e&follow=1'>Use 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