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

Function xmlTextConcat

ThirdParty/libxml2/vtklibxml2/tree.c:7084–7096  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7082 */
7083
7084int
7085xmlTextConcat(xmlNodePtr node, const xmlChar *content, int len) {
7086 if (node == NULL)
7087 return(-1);
7088
7089 if ((node->type != XML_TEXT_NODE) &&
7090 (node->type != XML_CDATA_SECTION_NODE) &&
7091 (node->type != XML_COMMENT_NODE) &&
7092 (node->type != XML_PI_NODE))
7093 return(-1);
7094
7095 return(xmlTextAddContent(node, content, len));
7096}
7097
7098/************************************************************************
7099 * *

Callers 1

xmlSAX2TextFunction · 0.85

Calls 1

xmlTextAddContentFunction · 0.85

Tested by

no test coverage detected