* xmlPathToURI: * @path: the resource locator in a filesystem notation * * Constructs an URI expressing the existing path * * Returns a new URI, or a duplicate of the path parameter if the * construction fails. The caller is responsible for freeing the memory * occupied by the returned string. If there is insufficient memory available, * or the argument is NULL, the function returns NULL.
| 2815 | * or the argument is NULL, the function returns NULL. |
| 2816 | */ |
| 2817 | xmlChar * |
| 2818 | xmlPathToURI(const xmlChar *path) |
| 2819 | { |
| 2820 | return(xmlCanonicPath(path)); |
| 2821 | } |
no test coverage detected