* xmlXPathTrueFunction: * @ctxt: the XPath Parser context * @nargs: the number of arguments * * Implement the true() XPath function * boolean true() */
| 8437 | * boolean true() |
| 8438 | */ |
| 8439 | void |
| 8440 | xmlXPathTrueFunction(xmlXPathParserContextPtr ctxt, int nargs) { |
| 8441 | CHECK_ARITY(0); |
| 8442 | valuePush(ctxt, xmlXPathCacheNewBoolean(ctxt, 1)); |
| 8443 | } |
| 8444 | |
| 8445 | /** |
| 8446 | * xmlXPathFalseFunction: |
nothing calls this directly
no test coverage detected