diff options
author | June McEnroe <june@causal.agency> | 2019-10-24 00:15:32 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-10-24 00:15:32 -0400 |
commit | 5797e8b972435a01c0770f8ac71a923f97460c61 (patch) | |
tree | ffa3403765717eec93bb79c1840593416def39ab /bounce.h | |
parent | Rename some things (diff) | |
download | pounce-5797e8b972435a01c0770f8ac71a923f97460c61.tar.gz pounce-5797e8b972435a01c0770f8ac71a923f97460c61.zip |
Make serverFormat public
Diffstat (limited to 'bounce.h')
-rw-r--r-- | bounce.h | 5 |
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); |