about summary refs log tree commit diff
path: root/chat.h
diff options
context:
space:
mode:
Diffstat (limited to 'chat.h')
-rw-r--r--chat.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/chat.h b/chat.h
index b82c4c9..e75112a 100644
--- a/chat.h
+++ b/chat.h
@@ -56,22 +56,6 @@ static inline char *seprintf(char *ptr, char *end, const char *fmt, ...) {
 	return (ptr > end ? end : ptr);
 }
 
-struct Cat {
-	char *buf;
-	size_t cap;
-	size_t len;
-};
-static inline void __attribute__((format(printf, 2, 3)))
-catf(struct Cat *cat, const char *format, ...) {
-	va_list ap;
-	va_start(ap, format);
-	int len = vsnprintf(&cat->buf[cat->len], cat->cap - cat->len, format, ap);
-	assert(len >= 0);
-	va_end(ap);
-	cat->len += len;
-	if (cat->len >= cat->cap) cat->len = cat->cap - 1;
-}
-
 enum Attr {
 	BIT(Bold),
 	BIT(Reverse),