* 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. */
| 3303 | * by the caller. |
| 3304 | */ |
| 3305 | xmlChar * |
| 3306 | xmlCatalogResolveURI(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 | /** |
no test coverage detected