#ifndef WEB_MISC_H #define WEB_MISC_H #include typedef struct bufstr { char *fl, *buf; } bufstr; void bufstr_buf(bufstr *b, char *str); bool bufstr_changed(bufstr *b); char *bufstr_flush(bufstr *b); void bufstr_clear(bufstr *b); #endif