shithub: neatmkfn

ref: e4613c6c126f5a9cb70703541b7d01db3ea1e9d2
dir: /sbuf.h/

View raw version
/* variable length string buffer */
struct sbuf {
	char *s;		/* allocated buffer */
	int sz;			/* buffer size */
	int n;			/* length of the string stored in s */
};

void sbuf_init(struct sbuf *sbuf);
void sbuf_done(struct sbuf *sbuf);
char *sbuf_buf(struct sbuf *sbuf);
void sbuf_printf(struct sbuf *sbuf, char *s, ...);
int sbuf_empty(struct sbuf *sbuf);