diff options
Diffstat (limited to 'src/strbuf.h')
-rw-r--r-- | src/strbuf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/strbuf.h b/src/strbuf.h index 6ad582a3..f530a0dc 100644 --- a/src/strbuf.h +++ b/src/strbuf.h @@ -6,6 +6,7 @@ struct strbuf; struct strbuf *strbuf_new(void); void strbuf_free(struct strbuf *sb); char *strbuf_tostring(struct strbuf *sb); +char *strbuf_tostring_free(struct strbuf *sb); int strbuf_printf(struct strbuf *sb, const char *format, ...); void strbuf_puts(struct strbuf *sb, const char *t); |