aboutsummaryrefslogtreecommitdiff
path: root/src/irc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc.h')
-rw-r--r--src/irc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/irc.h b/src/irc.h
index 5b9e81e..2c0680f 100644
--- a/src/irc.h
+++ b/src/irc.h
@@ -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);