File: html.h

package info (click to toggle)
darkstat 3.0.715-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 816 kB
  • sloc: ansic: 6,542; sh: 355; makefile: 172; php: 15
file content (14 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* darkstat 3
 *
 * html.h: HTML header/footer templating for web interface.
 * copyright (c) 2006 Ben Stewart.
 * copyright (c) 2010 Malte S. Stretz.
 */

struct str;

void html_open(struct str *buf, const char *title,
   const unsigned int path_depth, const int want_graph_js);
void html_close(struct str *buf);

/* vim:set ts=3 sw=3 tw=78 expandtab: */