Contents Previous Next

mxmlIndexFind()


Description

Find the next matching node. You should call mxmlIndexReset() prior to using this function for the first time with a particular set of "element" and "value" strings. Passing NULL for both "element" and "value" is equivalent to calling mxmlIndexEnum().

Syntax

mxml_node_t *
mxmlIndexFind(
    mxml_index_t * ind,
    const char * element,
    const char * value);

Arguments

NameDescription
indIndex to search
elementElement name to find, if any
valueAttribute value, if any

Returns

Node or NULL if none found


Contents Previous Next