aboutsummaryrefslogtreecommitdiff
path: root/src/irc.h
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-02-21 22:11:10 -0500
committerB. Watson <urchlay@slackware.uk>2026-02-21 22:11:10 -0500
commitd3a19b319e8ecdf111de44ffa9847474301edcbb (patch)
treed9586b54b3940c91debaea418b9711c0e94c7f5c /src/irc.h
parent525a545e62c97c1ed5335d6ce5750341c5ba877e (diff)
downloadfujinet-chat-d3a19b319e8ecdf111de44ffa9847474301edcbb.tar.gz
WIP.
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);