* 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. */
| 2751 | * error. |
| 2752 | */ |
| 2753 | xmlChar * |
| 2754 | xmlBuildRelativeURI(const xmlChar * URI, const xmlChar * base) |
| 2755 | { |
| 2756 | xmlChar *val; |
| 2757 | |
| 2758 | xmlBuildRelativeURISafe(URI, base, &val); |
| 2759 | return(val); |
| 2760 | } |
| 2761 | |
| 2762 | /** |
| 2763 | * xmlCanonicPath: |
nothing calls this directly
no test coverage detected