summaryrefslogtreecommitdiff
path: root/src/table.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/table.hh')
-rw-r--r--src/table.hh19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/table.hh b/src/table.hh
new file mode 100644
index 00000000..8068c184
--- /dev/null
+++ b/src/table.hh
@@ -0,0 +1,19 @@
+#ifndef __TABLE_HH__
+#define __TABLE_HH__
+
+/*
+ * Classes
+ */
+
+class DilloHtml;
+
+/*
+ * Table parsing functions
+ */
+
+void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize);
+void Html_tag_open_tr(DilloHtml *html, const char *tag, int tagsize);
+void Html_tag_open_td(DilloHtml *html, const char *tag, int tagsize);
+void Html_tag_open_th(DilloHtml *html, const char *tag, int tagsize);
+
+#endif /* __TABLE_HH__ */