diff options
| author | frosty <gabriel@bwaaa.monster> | 2026-09-16 16:32:06 -0400 |
|---|---|---|
| committer | frosty <gabriel@bwaaa.monster> | 2026-09-16 16:32:06 -0400 |
| commit | 4c8d764d171ec77ff626cec273c44ec7e7a995fc (patch) | |
| tree | dc36193e611ece53c8f7e74d1dea71f8d9e7004e /src/Dom/Dom.h | |
| download | yapssg-4c8d764d171ec77ff626cec273c44ec7e7a995fc.tar.gz | |
Diffstat (limited to 'src/Dom/Dom.h')
| -rw-r--r-- | src/Dom/Dom.h | 10 |
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 |
