* xmlStreamPushAttr: * @stream: the stream context * @name: the current name * @ns: the namespace name * * Push new attribute 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. * Ot
| 2171 | * match and 0 otherwise. |
| 2172 | */ |
| 2173 | int |
| 2174 | xmlStreamPushAttr(xmlStreamCtxtPtr stream, |
| 2175 | const xmlChar *name, const xmlChar *ns) { |
| 2176 | return (xmlStreamPushInternal(stream, name, ns, XML_ATTRIBUTE_NODE)); |
| 2177 | } |
| 2178 | |
| 2179 | /** |
| 2180 | * xmlStreamPop: |
no test coverage detected