#include <string.h>
#include "wbxml.h"
Include dependency graph for wbxml_tree.c:
Go to the source code of this file.
Functions | |
WBXMLError | wbxml_tree_from_wbxml (unsigned char *wbxml, unsigned int wbxml_len, WBXMLLanguage lang, WBXMLTree **tree) |
WBXMLError | wbxml_tree_from_xml (unsigned char *xml, WBXMLTree **tree) |
WBXMLTreeAttribute * | wbxml_tree_attribute_create (void) |
Create a Tree Attribute structure. | |
void | wbxml_tree_attribute_destroy (WBXMLTreeAttribute *attr) |
Destroy a Tree Attribute structure. | |
WBXMLTreeNode * | wbxml_tree_node_create (WBXMLTreeNodeType type) |
Create a Tree Node structure. | |
void | wbxml_tree_node_destroy (WBXMLTreeNode *node) |
Destroy a Tree Node structure. | |
WBXMLTree * | wbxml_tree_create (void) |
Create a Tree structure. | |
void | wbxml_tree_destroy (WBXMLTree *tree) |
Destroy a Tree structure. | |
WBXMLTreeNode * | wbxml_tree_get_element_node_from_name (WBXMLTreeNode *node, const char *name, unsigned char recurs) |
Definition in file wbxml_tree.c.
|
|
|
Definition at line 322 of file wbxml_tree.c. References FALSE, WBXMLTreeNode_s::name, WBXMLTreeNode_s::next, NULL, TRUE, WBXMLTreeNode_s::type, WB_BOOL, WBXML_STRCMP, wbxml_tag_get_xml_name(), and WBXML_TREE_ELEMENT_NODE. |