diff options
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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) { |