mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
14 lines
297 B
C
14 lines
297 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);
|
||
|
|
|
||
|
|
int strbuf_printf(struct strbuf *sb, const char *format, ...);
|
||
|
|
void strbuf_puts(struct strbuf *sb, const char *t);
|
||
|
|
|
||
|
|
#endif
|