aboutsummaryrefslogtreecommitdiff
path: root/src/Dom/Dom.h
diff options
context:
space:
mode:
authorfrosty <gabriel@bwaaa.monster>2026-09-16 16:32:06 -0400
committerfrosty <gabriel@bwaaa.monster>2026-09-16 16:32:06 -0400
commit4c8d764d171ec77ff626cec273c44ec7e7a995fc (patch)
treedc36193e611ece53c8f7e74d1dea71f8d9e7004e /src/Dom/Dom.h
downloadyapssg-4c8d764d171ec77ff626cec273c44ec7e7a995fc.tar.gz
init: initHEADmaster
Diffstat (limited to 'src/Dom/Dom.h')
-rw-r--r--src/Dom/Dom.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Dom/Dom.h b/src/Dom/Dom.h
new file mode 100644
index 0000000..06bd1ff
--- /dev/null
+++ b/src/Dom/Dom.h
@@ -0,0 +1,10 @@
+#ifndef YAPSSG_DOM_H
+#define YAPSSG_DOM_H
+
+#include <libxml/tree.h>
+#include <lua.h>
+
+void dom_push_page(lua_State *lua, const xmlNode *root);
+xmlNodePtr dom_page_from_lua(lua_State *lua, int table_index);
+
+#endif