* xmlXPathCompiledEval: * @comp: the compiled XPath expression * @ctx: the XPath context * * Evaluate the Precompiled XPath expression in the given context. * * Returns the xmlXPathObjectPtr resulting from the evaluation or NULL. * the caller has to free the object. */
| 13191 | * the caller has to free the object. |
| 13192 | */ |
| 13193 | xmlXPathObjectPtr |
| 13194 | xmlXPathCompiledEval(xmlXPathCompExprPtr comp, xmlXPathContextPtr ctx) |
| 13195 | { |
| 13196 | xmlXPathObjectPtr res = NULL; |
| 13197 | |
| 13198 | xmlXPathCompiledEvalInternal(comp, ctx, &res, 0); |
| 13199 | return(res); |
| 13200 | } |
| 13201 | |
| 13202 | /** |
| 13203 | * xmlXPathCompiledEvalToBoolean: |
no test coverage detected