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

Function xmlSchemaAddItemSize

ThirdParty/libxml2/vtklibxml2/xmlschemas.c:3763–3772  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3761}
3762
3763static int
3764xmlSchemaAddItemSize(xmlSchemaItemListPtr *list, int initialSize, void *item)
3765{
3766 if (*list == NULL) {
3767 *list = xmlSchemaItemListCreate();
3768 if (*list == NULL)
3769 return(-1);
3770 }
3771 return(xmlSchemaItemListAddSize(*list, initialSize, item));
3772}
3773
3774/**
3775 * xmlSchemaFreeAnnot:

Callers

nothing calls this directly

Calls 2

xmlSchemaItemListCreateFunction · 0.85
xmlSchemaItemListAddSizeFunction · 0.85

Tested by

no test coverage detected