* xmlSchemaCleanupTypes: * * DEPRECATED: This function will be made private. Call xmlCleanupParser * to free global state but see the warnings there. xmlCleanupParser * should be only called once at program exit. In most cases, you don't * have to call cleanup functions at all. * * Cleanup the default XML Schemas type library */
| 853 | * Cleanup the default XML Schemas type library |
| 854 | */ |
| 855 | void |
| 856 | xmlSchemaCleanupTypes(void) { |
| 857 | if (xmlSchemaTypesInitialized != 0) { |
| 858 | xmlSchemaCleanupTypesInternal(); |
| 859 | xmlSchemaTypesInitialized = 0; |
| 860 | } |
| 861 | } |
| 862 | |
| 863 | /** |
| 864 | * xmlSchemaIsBuiltInTypeFacet: |
no test coverage detected