An XML node.
struct mxml_node_s { struct mxml_node_s * child; struct mxml_node_s * last_child; struct mxml_node_s * next; struct mxml_node_s * parent; struct mxml_node_s * prev; mxml_type_t type; mxml_value_t value; };
Name | Description |
---|---|
child | First child node |
last_child | Last child node |
next | Next node under same parent |
parent | Parent node |
prev | Previous node under same parent |
type | Node type |
value | Node value |