* xmlXPathEvalExpression: * @str: the XPath expression * @ctxt: the XPath context * * Alias for xmlXPathEval(). * * Returns the xmlXPathObjectPtr resulting from the evaluation or NULL. * the caller has to free the object. */
| 13368 | * the caller has to free the object. |
| 13369 | */ |
| 13370 | xmlXPathObjectPtr |
| 13371 | xmlXPathEvalExpression(const xmlChar *str, xmlXPathContextPtr ctxt) { |
| 13372 | return(xmlXPathEval(str, ctxt)); |
| 13373 | } |
| 13374 | |
| 13375 | /************************************************************************ |
| 13376 | * * |