add description field for sinks/sources
[profile/ivi/pulseaudio.git] / src / strbuf.h
1 #ifndef foostrbufhfoo
2 #define foostrbufhfoo
3
4 struct pa_strbuf;
5
6 struct pa_strbuf *pa_strbuf_new(void);
7 void pa_strbuf_free(struct pa_strbuf *sb);
8 char *pa_strbuf_tostring(struct pa_strbuf *sb);
9 char *pa_strbuf_tostring_free(struct pa_strbuf *sb);
10
11 int pa_strbuf_printf(struct pa_strbuf *sb, const char *format, ...) __attribute__ ((format (printf, 2, 3)));;
12 void pa_strbuf_puts(struct pa_strbuf *sb, const char *t);
13
14 #endif