summaryrefslogtreecommitdiff
path: root/web/web_misc.h
blob: 0d7501287b272d14335de09296e71afbbff8c4db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef WEB_MISC_H
#define WEB_MISC_H

#include <stdbool.h>

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