]> git.lizzy.rs Git - linenoise.git/blobdiff - stringbuf.c
Remove a spurious function declaration
[linenoise.git] / stringbuf.c
index b42a9cc1fc7640c57c72e3ef965469c01716600d..f83c1b8d54fee7c3964ad68a208c7f0f68db1905 100644 (file)
@@ -47,7 +47,6 @@ void sb_append(stringbuf *sb, const char *str)
 
 void sb_append_len(stringbuf *sb, const char *str, int len)
 {
-       int utf8_strlen(const char *str, int bytelen);
        if (sb->remaining < len + 1) {
                sb_realloc(sb, sb->last + len + 1 + SB_INCREMENT);
        }