#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include <memdebug.h>
#include <pro/uxml.h>
Go to the source code of this file.
Functions | |
UXML_NODE * | UxmlNodeCreate (char *name) |
Allocate a new tree node. | |
int | UxmlNodeAddAttrib (UXML_NODE *node, char *name, char *value) |
Add an attribute to the specified node. | |
UXML_NODE * | UxmlTreeAddSibling (UXML_NODE *node, UXML_NODE *sibling) |
Add a sibling to the specified node. | |
UXML_NODE * | UxmlTreeAddChild (UXML_NODE *node, UXML_NODE *child) |
Add a child to the specified node. | |
void | UxmlTreeDestroy (UXML_NODE *node) |
Release all memory of an XML tree structure. |