diff options
Diffstat (limited to 'src/irc.h')
| -rw-r--r-- | src/irc.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -25,6 +25,10 @@ void txbuf_append_str(const char *str); /* clears the transmit buffer, then appends a string to it. */ void txbuf_set_str(const char *str); +/* as txbuf_set_str2(), but multiple strings. */ +void txbuf_set_str2(const char *s1, const char *s2); +void txbuf_set_str3(const char *s1, const char *s2, const char *s3); + /* sends whatever's in the transmit buffer, then clears it. if nothing was in the buffer, nothing gets sent. */ void txbuf_send(void); |
