* xmlXPathCompile: * @str: the XPath expression * * Compile an XPath expression * * Returns the xmlXPathCompExprPtr resulting from the compilation or NULL. * the caller has to free the object. */
| 13112 | * the caller has to free the object. |
| 13113 | */ |
| 13114 | xmlXPathCompExprPtr |
| 13115 | xmlXPathCompile(const xmlChar *str) { |
| 13116 | return(xmlXPathCtxtCompile(NULL, str)); |
| 13117 | } |
| 13118 | |
| 13119 | /** |
| 13120 | * xmlXPathCompiledEvalInternal: |
no test coverage detected