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

Function xmlCatalogResolveURI

ThirdParty/libxml2/vtklibxml2/catalog.c:3305–3314  ·  view source on GitHub ↗

* xmlCatalogResolveURI: * @URI: the URI * * Do a complete resolution lookup of an URI * * Returns the URI of the resource or NULL if not found, it must be freed * by the caller. */

Source from the content-addressed store, hash-verified

3303 * by the caller.
3304 */
3305xmlChar *
3306xmlCatalogResolveURI(const xmlChar *URI) {
3307 xmlChar *ret;
3308
3309 if (!xmlCatalogInitialized)
3310 xmlInitializeCatalog();
3311
3312 ret = xmlACatalogResolveURI(xmlDefaultCatalog, URI);
3313 return(ret);
3314}
3315
3316#ifdef LIBXML_OUTPUT_ENABLED
3317/**

Callers 2

mainFunction · 0.85

Calls 2

xmlInitializeCatalogFunction · 0.85
xmlACatalogResolveURIFunction · 0.85

Tested by

no test coverage detected