summaryrefslogtreecommitdiff
path: root/src/info2html/html.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/info2html/html.h')
-rw-r--r--src/info2html/html.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/info2html/html.h b/src/info2html/html.h
new file mode 100644
index 00000000..8a0f5694
--- /dev/null
+++ b/src/info2html/html.h
@@ -0,0 +1,22 @@
+#ifndef HTML_H
+#define HTML_H
+
+#define HTML_ROOT "./htmltest"
+
+#define HEADER_SIZE_1 "H1"
+#define HEADER_SIZE_2 "H2"
+
+void dump_html_for_node( NODE *node );
+
+void open_body_text_html( FILE *f );
+void close_body_text_html( FILE *f );
+char *write_body_text_html( FILE *f, char *p, char *q, char *nodefile );
+
+void open_menu_html( FILE *f, char *p );
+void close_menu_html( FILE *f );
+void write_menu_entry_html( FILE *f, char *p, char *nodefile,char **menu_end );
+
+void write_header_html( FILE *f, char *p, char *hdr );
+
+void write_html_horiz_rule( FILE *f );
+#endif