strbuf: add new call pa_strbuf_putc()

This commit is contained in:
Lennart Poettering 2009-04-29 01:46:51 +02:00
parent 5d39b8d22d
commit 9745483cdd
2 changed files with 8 additions and 0 deletions

View file

@ -35,6 +35,7 @@ char *pa_strbuf_tostring_free(pa_strbuf *sb);
size_t pa_strbuf_printf(pa_strbuf *sb, const char *format, ...) PA_GCC_PRINTF_ATTR(2,3);
void pa_strbuf_puts(pa_strbuf *sb, const char *t);
void pa_strbuf_putsn(pa_strbuf *sb, const char *t, size_t m);
void pa_strbuf_putc(pa_strbuf *sb, char c);
pa_bool_t pa_strbuf_isempty(pa_strbuf *sb);