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

Function xmlSchemaSchemaRelationCreate

ThirdParty/libxml2/vtklibxml2/xmlschemas.c:9824–9837  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9822}
9823
9824static xmlSchemaSchemaRelationPtr
9825xmlSchemaSchemaRelationCreate(void)
9826{
9827 xmlSchemaSchemaRelationPtr ret;
9828
9829 ret = (xmlSchemaSchemaRelationPtr)
9830 xmlMalloc(sizeof(xmlSchemaSchemaRelation));
9831 if (ret == NULL) {
9832 xmlSchemaPErrMemory(NULL);
9833 return(NULL);
9834 }
9835 memset(ret, 0, sizeof(xmlSchemaSchemaRelation));
9836 return(ret);
9837}
9838
9839#if 0
9840static void

Callers 1

xmlSchemaAddSchemaDocFunction · 0.85

Calls 1

xmlSchemaPErrMemoryFunction · 0.85

Tested by

no test coverage detected