From 7fe639b3ba7a253627d2cd34f3b97bd95b0a90b3 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Fri, 21 Jul 2023 01:07:57 +0200 Subject: Remove files now provided by slweb --- html.h | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 html.h (limited to 'html.h') diff --git a/html.h b/html.h deleted file mode 100644 index e62575e..0000000 --- a/html.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef HTML_H -#define HTML_H - -#include - -struct html_node *html_node_alloc(const char *element); -void html_node_free(struct html_node *n); -int html_node_set_value(struct html_node *n, const char *val); -int html_node_set_value_unescaped(struct html_node *n, const char *val); -int html_node_add_attr(struct html_node *n, const char *attr, const char *val); -struct html_node *html_node_add_child(struct html_node *n, const char *elem); -void html_node_add_sibling(struct html_node *n, struct html_node *sibling); -int html_serialize(const struct html_node *n, struct dynstr *d); - -#endif /* HTML_H */ -- cgit v1.2.3