Pull in darkstat-3.0.718
[darkstat-debian] / html.h
1 /* darkstat 3
2 *
3 * html.h: HTML header/footer templating for web interface.
4 * copyright (c) 2006 Ben Stewart.
5 * copyright (c) 2010 Malte S. Stretz.
6 */
7
8 struct str;
9
10 void html_open(struct str *buf, const char *title,
11 const unsigned int path_depth, const int want_graph_js);
12 void html_close(struct str *buf);
13
14 /* vim:set ts=3 sw=3 tw=78 expandtab: */