| 28637 | */ |
| 28638 | |
| 28639 | void |
| 28640 | xmlSchemaValidateSetLocator(xmlSchemaValidCtxtPtr vctxt, |
| 28641 | xmlSchemaValidityLocatorFunc f, |
| 28642 | void *ctxt) |
| 28643 | { |
| 28644 | if (vctxt == NULL) return; |
| 28645 | vctxt->locFunc = f; |
| 28646 | vctxt->locCtxt = ctxt; |
| 28647 | } |
| 28648 | |
| 28649 | /** |
| 28650 | * xmlSchemaValidateStreamLocator: |
no outgoing calls
no test coverage detected