* xmlSchematronReportOutput: * @ctxt: the validation context * @cur: the current node tested * @msg: the message output * * Output part of the report to whatever channel the user selected */
| 1446 | * Output part of the report to whatever channel the user selected |
| 1447 | */ |
| 1448 | static void |
| 1449 | xmlSchematronReportOutput(xmlSchematronValidCtxtPtr ctxt ATTRIBUTE_UNUSED, |
| 1450 | xmlNodePtr cur ATTRIBUTE_UNUSED, |
| 1451 | const char *msg) { |
| 1452 | /* TODO */ |
| 1453 | fprintf(stderr, "%s", msg); |
| 1454 | } |
| 1455 | |
| 1456 | /** |
| 1457 | * xmlSchematronFormatReport: |
no test coverage detected