6ad582a31fde93cffdfd5b9d748b1bb5e91a792a
[profile/ivi/pulseaudio.git] / src / strbuf.h
1 #ifndef foostrbufhfoo
2 #define foostrbufhfoo
3
4 struct strbuf;
5
6 struct strbuf *strbuf_new(void);
7 void strbuf_free(struct strbuf *sb);
8 char *strbuf_tostring(struct strbuf *sb);
9
10 int strbuf_printf(struct strbuf *sb, const char *format, ...);
11 void strbuf_puts(struct strbuf *sb, const char *t);
12
13 #endif