* xmlStreamPush: * @stream: the stream context * @name: the current name * @ns: the namespace name * * 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 document. * This can also act as a reset. * Otherw
| 2121 | * match and 0 otherwise. |
| 2122 | */ |
| 2123 | int |
| 2124 | xmlStreamPush(xmlStreamCtxtPtr stream, |
| 2125 | const xmlChar *name, const xmlChar *ns) { |
| 2126 | return (xmlStreamPushInternal(stream, name, ns, XML_ELEMENT_NODE)); |
| 2127 | } |
| 2128 | |
| 2129 | /** |
| 2130 | * xmlStreamPushNode: |