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

Function xmlSchemaSchemaRelationAddChild

ThirdParty/libxml2/vtklibxml2/xmlschemas.c:10191–10204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10189}
10190
10191static void
10192xmlSchemaSchemaRelationAddChild(xmlSchemaBucketPtr bucket,
10193 xmlSchemaSchemaRelationPtr rel)
10194{
10195 xmlSchemaSchemaRelationPtr cur = bucket->relations;
10196
10197 if (cur == NULL) {
10198 bucket->relations = rel;
10199 return;
10200 }
10201 while (cur->next != NULL)
10202 cur = cur->next;
10203 cur->next = rel;
10204}
10205
10206
10207static const xmlChar *

Callers 1

xmlSchemaAddSchemaDocFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected