From d3a19b319e8ecdf111de44ffa9847474301edcbb Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Sat, 21 Feb 2026 22:11:10 -0500 Subject: WIP. --- src/irc.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/irc.h') 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); -- cgit v1.2.3