pulseaudio/src/strbuf.h

14 lines
297 B
C
Raw Normal View History

#ifndef foostrbufhfoo
#define foostrbufhfoo
struct strbuf;
struct strbuf *strbuf_new(void);
void strbuf_free(struct strbuf *sb);
char *strbuf_tostring(struct strbuf *sb);
int strbuf_printf(struct strbuf *sb, const char *format, ...);
void strbuf_puts(struct strbuf *sb, const char *t);
#endif