* xmlXPathFalseFunction: * @ctxt: the XPath Parser context * @nargs: the number of arguments * * Implement the false() XPath function * boolean false() */
| 8451 | * boolean false() |
| 8452 | */ |
| 8453 | void |
| 8454 | xmlXPathFalseFunction(xmlXPathParserContextPtr ctxt, int nargs) { |
| 8455 | CHECK_ARITY(0); |
| 8456 | valuePush(ctxt, xmlXPathCacheNewBoolean(ctxt, 0)); |
| 8457 | } |
| 8458 | |
| 8459 | /** |
| 8460 | * xmlXPathLangFunction: |
nothing calls this directly
no test coverage detected