summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/util.c b/util.c
index 57b54da..cee9cc3 100644
--- a/util.c
+++ b/util.c
@@ -150,6 +150,7 @@ static void str_cpy(char *dst, size_t dst_sz, char const *src) {
}
#define strbuf_cpy(dst, src) str_cpy(dst, sizeof dst, src)
+#define strbuf_cat(dst, src) str_cat(dst, sizeof dst, src)
// advances str to the start of the next UTF8 character
static void utf8_next_char_const(char const **str) {