MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlGetLastError

Function xmlGetLastError

ThirdParty/libxml2/vtklibxml2/error.c:921–927  ·  view source on GitHub ↗

* xmlGetLastError: * * Get the last global error registered. This is per thread if compiled * with thread support. * * Returns a pointer to the error */

Source from the content-addressed store, hash-verified

919 * Returns a pointer to the error
920 */
921const xmlError *
922xmlGetLastError(void)
923{
924 if (xmlLastError.code == XML_ERR_OK)
925 return (NULL);
926 return (&xmlLastError);
927}
928
929/**
930 * xmlResetError:

Callers 2

xmlconfTestNotNSWFFunction · 0.85
xmlSchemaAddSchemaDocFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected