| 1576 | "; |
| 1577 | |
| 1578 | int main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) { |
| 1579 | xmlDocPtr res; |
| 1580 | |
| 1581 | res = xmlConvertCRNG(schemas, -1); |
| 1582 | if (res != NULL) { |
| 1583 | xmlDocFormatDump(stdout, res, 1); |
| 1584 | xmlFreeDoc(res); |
| 1585 | } |
| 1586 | return(0); |
| 1587 | } |
| 1588 | #endif |
nothing calls this directly
no test coverage detected