aboutsummaryrefslogtreecommitdiff
path: root/libtxt/inc
diff options
context:
space:
mode:
authorMarvin Borner2020-11-23 22:19:54 +0100
committerMarvin Borner2020-11-23 22:19:54 +0100
commit8babf8b26e23ffdd8094c810295061effde153dd (patch)
tree98aebc32ae3f698b1381d507e595c788e34ada2a /libtxt/inc
parentf32a888e6fdcb13802f289ba1aa58b70fa9466f3 (diff)
Fixed some XML/HTML parsing bugs
Diffstat (limited to 'libtxt/inc')
-rw-r--r--libtxt/inc/html.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/libtxt/inc/html.h b/libtxt/inc/html.h
new file mode 100644
index 0000000..dd2b59f
--- /dev/null
+++ b/libtxt/inc/html.h
@@ -0,0 +1,9 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+// HTML parsing is mainly based on the XML parser
+
+#ifndef HTML_H
+#define HTML_H
+
+int html_self_closing(const char *tag);
+
+#endif