* xmlStreamPushNode: * @stream: the stream context * @name: the current name * @ns: the namespace name * @nodeType: the type of the node being pushed * * Push new data onto the stream. NOTE: if the call xmlPatterncompile() * indicated a dictionary, then strings for name and ns will be expected * to come from the dictionary. * Both @name and @ns being NULL means the / i.e. the root of the
| 2146 | * match and 0 otherwise. |
| 2147 | */ |
| 2148 | int |
| 2149 | xmlStreamPushNode(xmlStreamCtxtPtr stream, |
| 2150 | const xmlChar *name, const xmlChar *ns, |
| 2151 | int nodeType) |
| 2152 | { |
| 2153 | return (xmlStreamPushInternal(stream, name, ns, |
| 2154 | nodeType)); |
| 2155 | } |
| 2156 | |
| 2157 | /** |
| 2158 | * xmlStreamPushAttr: |
no test coverage detected