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

Function xmlNodeIsText

ThirdParty/libxml2/vtklibxml2/tree.c:7036–7042  ·  view source on GitHub ↗

* xmlNodeIsText: * @node: the node * * Is this node a Text node ? * Returns 1 yes, 0 no */

Source from the content-addressed store, hash-verified

7034 * Returns 1 yes, 0 no
7035 */
7036int
7037xmlNodeIsText(const xmlNode *node) {
7038 if (node == NULL) return(0);
7039
7040 if (node->type == XML_TEXT_NODE) return(1);
7041 return(0);
7042}
7043
7044/**
7045 * xmlIsBlankNode:

Callers 2

areBlanksFunction · 0.85
areBlanksFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected