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

Function xmlBuildRelativeURI

ThirdParty/libxml2/vtklibxml2/uri.c:2753–2760  ·  view source on GitHub ↗

* xmlBuildRelativeURI: * @URI: the URI reference under consideration * @base: the base value * * See xmlBuildRelativeURISafe. * * Returns a new URI string (to be freed by the caller) or NULL in case * error. */

Source from the content-addressed store, hash-verified

2751 * error.
2752 */
2753xmlChar *
2754xmlBuildRelativeURI(const xmlChar * URI, const xmlChar * base)
2755{
2756 xmlChar *val;
2757
2758 xmlBuildRelativeURISafe(URI, base, &val);
2759 return(val);
2760}
2761
2762/**
2763 * xmlCanonicPath:

Callers

nothing calls this directly

Calls 1

xmlBuildRelativeURISafeFunction · 0.85

Tested by

no test coverage detected