2004-06-08 23:54:24 +00:00
|
|
|
#ifndef foostrbufhfoo
|
|
|
|
|
#define foostrbufhfoo
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_strbuf;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_strbuf *pa_strbuf_new(void);
|
|
|
|
|
void pa_strbuf_free(struct pa_strbuf *sb);
|
|
|
|
|
char *pa_strbuf_tostring(struct pa_strbuf *sb);
|
|
|
|
|
char *pa_strbuf_tostring_free(struct pa_strbuf *sb);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-10 20:56:38 +00:00
|
|
|
int pa_strbuf_printf(struct pa_strbuf *sb, const char *format, ...) __attribute__ ((format (printf, 2, 3)));;
|
2004-07-03 23:35:12 +00:00
|
|
|
void pa_strbuf_puts(struct pa_strbuf *sb, const char *t);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
#endif
|