| 1018 | } |
| 1019 | |
| 1020 | XML_Parser XMLCALL |
| 1021 | XML_ParserCreateNS(const XML_Char *encodingName, XML_Char nsSep) { |
| 1022 | XML_Char tmp[2] = {nsSep, 0}; |
| 1023 | return XML_ParserCreate_MM(encodingName, NULL, tmp); |
| 1024 | } |
| 1025 | |
| 1026 | // "xml=http://www.w3.org/XML/1998/namespace" |
| 1027 | static const XML_Char implicitContext[] |
nothing calls this directly
no test coverage detected
searching dependent graphs…