* xmlXPathCompiledEvalToBoolean: * @comp: the compiled XPath expression * @ctxt: the XPath context * * Applies the XPath boolean() function on the result of the given * compiled expression. * * Returns 1 if the expression evaluated to true, 0 if to false and * -1 in API and internal errors. */
| 13211 | * -1 in API and internal errors. |
| 13212 | */ |
| 13213 | int |
| 13214 | xmlXPathCompiledEvalToBoolean(xmlXPathCompExprPtr comp, |
| 13215 | xmlXPathContextPtr ctxt) |
| 13216 | { |
| 13217 | return(xmlXPathCompiledEvalInternal(comp, ctxt, NULL, 1)); |
| 13218 | } |
| 13219 | |
| 13220 | /** |
| 13221 | * xmlXPathEvalExpr: |
nothing calls this directly
no test coverage detected