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);