summaryrefslogtreecommitdiff
path: root/web/web_dom.h
diff options
context:
space:
mode:
Diffstat (limited to 'web/web_dom.h')
-rw-r--r--web/web_dom.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/web/web_dom.h b/web/web_dom.h
index 41ac46d..e89b5ba 100644
--- a/web/web_dom.h
+++ b/web/web_dom.h
@@ -4,15 +4,19 @@
#include <stdbool.h>
struct dom_elem {
- char *ns, *name, *content;
+ char *type, *ns, *name, *content;
int n_attrs, size_attrs;
char **attr_names, **attr_vals;
+ int n_children, size_children;
+ struct dom_elem **children;
};
struct dom_elem *dom_elem_init(char *ns, char *name, int size_attrs);
+struct dom_elem *dom_text_init(char *content);
void dom_elem_free(struct dom_elem *e);
void dom_elem_add_attr(struct dom_elem *e, char *name, char *val);
void dom_elem_add_attrd(struct dom_elem *e, char *name, double val);
+void dom_elem_add_child(struct dom_elem *e, struct dom_elem *child);
void dom_append_elemv(char *sel, int elemc, struct dom_elem **elemv);