Beispiel #1
0
inline xml_node_t *
xml_node_get_child(const xml_node_t *node, const char *name)
{
	return xml_node_get_next_child(node, name, NULL);
}
Beispiel #2
0
static xml_node_t *
ni_iaid_map_next_node(const xml_node_t *root, const xml_node_t *last)
{
	return xml_node_get_next_child(root, NI_CONFIG_DEFAULT_IAID_NODE, last);
}