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

Function xmlCatalogSetDebug

ThirdParty/libxml2/vtklibxml2/catalog.c:3513–3522  ·  view source on GitHub ↗

* xmlCatalogSetDebug: * @level: the debug level of catalogs required * * Used to set the debug level for catalog operation, 0 disable * debugging, 1 enable it * * Returns the previous value of the catalog debugging level */

Source from the content-addressed store, hash-verified

3511 * Returns the previous value of the catalog debugging level
3512 */
3513int
3514xmlCatalogSetDebug(int level) {
3515 int ret = xmlDebugCatalogs;
3516
3517 if (level <= 0)
3518 xmlDebugCatalogs = 0;
3519 else
3520 xmlDebugCatalogs = level;
3521 return(ret);
3522}
3523
3524/************************************************************************
3525 * *

Callers 2

usershellFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected