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

Function xmlSchemaGetComponentDesignation

ThirdParty/libxml2/vtklibxml2/xmlschemas.c:1442–1454  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1440}
1441
1442static const xmlChar*
1443xmlSchemaGetComponentDesignation(xmlChar **buf, void *item)
1444{
1445 xmlChar *str = NULL;
1446
1447 *buf = xmlStrcat(*buf, WXS_ITEM_TYPE_NAME(item));
1448 *buf = xmlStrcat(*buf, BAD_CAST " '");
1449 *buf = xmlStrcat(*buf, xmlSchemaGetComponentQName(&str,
1450 (xmlSchemaBasicItemPtr) item));
1451 *buf = xmlStrcat(*buf, BAD_CAST "'");
1452 FREE_AND_NULL(str);
1453 return(*buf);
1454}
1455
1456static const xmlChar*
1457xmlSchemaGetIDCDesignation(xmlChar **buf, xmlSchemaIDCPtr idc)

Calls 3

xmlStrcatFunction · 0.85
FREE_AND_NULLFunction · 0.85

Tested by

no test coverage detected