MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlCatalogConvert

Function xmlCatalogConvert

ThirdParty/libxml2/vtklibxml2/catalog.c:3405–3416  ·  view source on GitHub ↗

* xmlCatalogConvert: * * Convert all the SGML catalog entries as XML ones * * Returns the number of entries converted if successful, -1 otherwise */

Source from the content-addressed store, hash-verified

3403 * Returns the number of entries converted if successful, -1 otherwise
3404 */
3405int
3406xmlCatalogConvert(void) {
3407 int res = -1;
3408
3409 if (!xmlCatalogInitialized)
3410 xmlInitializeCatalog();
3411
3412 xmlRMutexLock(xmlCatalogMutex);
3413 res = xmlConvertSGMLCatalog(xmlDefaultCatalog);
3414 xmlRMutexUnlock(xmlCatalogMutex);
3415 return(res);
3416}
3417
3418/************************************************************************
3419 * *

Callers 1

mainFunction · 0.85

Calls 4

xmlInitializeCatalogFunction · 0.85
xmlRMutexLockFunction · 0.85
xmlConvertSGMLCatalogFunction · 0.85
xmlRMutexUnlockFunction · 0.85

Tested by

no test coverage detected