| 1820 | } |
| 1821 | |
| 1822 | static void |
| 1823 | startElementNsBnd(void *ctx, const xmlChar *localname, const xmlChar *prefix, |
| 1824 | const xmlChar *URI, int nb_namespaces, |
| 1825 | const xmlChar **namespaces, int nb_attributes, |
| 1826 | int nb_defaulted, const xmlChar **attributes) { |
| 1827 | pushBoundaryCount++; |
| 1828 | xmlSAX2StartElementNs(ctx, localname, prefix, URI, nb_namespaces, |
| 1829 | namespaces, nb_attributes, nb_defaulted, attributes); |
| 1830 | } |
| 1831 | |
| 1832 | static void |
| 1833 | endElementNsBnd(void *ctx, const xmlChar *localname, const xmlChar *prefix, |
nothing calls this directly
no test coverage detected