* xmlXPatherror: * @ctxt: the XPath Parser context * @file: the file name * @line: the line number * @no: the error number * * Formats an error message. */
| 730 | * Formats an error message. |
| 731 | */ |
| 732 | void |
| 733 | xmlXPatherror(xmlXPathParserContextPtr ctxt, const char *file ATTRIBUTE_UNUSED, |
| 734 | int line ATTRIBUTE_UNUSED, int no) { |
| 735 | xmlXPathErr(ctxt, no); |
| 736 | } |
| 737 | |
| 738 | /** |
| 739 | * xmlXPathCheckOpLimit: |
no test coverage detected