mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-16 08:56:40 -05:00
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@22 fefdeb5f-60dc-0310-8127-8f9354f1896f
14 lines
344 B
C
14 lines
344 B
C
#ifndef foostrbufhfoo
|
|
#define foostrbufhfoo
|
|
|
|
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);
|
|
|
|
#endif
|