| 2754 | } |
| 2755 | |
| 2756 | enum XML_Error XMLCALL |
| 2757 | XML_GetErrorCode(XML_Parser parser) { |
| 2758 | if (parser == NULL) |
| 2759 | return XML_ERROR_INVALID_ARGUMENT; |
| 2760 | return parser->m_errorCode; |
| 2761 | } |
| 2762 | |
| 2763 | XML_Index XMLCALL |
| 2764 | XML_GetCurrentByteIndex(XML_Parser parser) { |
no outgoing calls
no test coverage detected