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

Function xmlStringLenGetNodeList

ThirdParty/libxml2/vtklibxml2/tree.c:1485–1491  ·  view source on GitHub ↗

* xmlStringLenGetNodeList: * @doc: a document (optional) * @value: an attribute value * @len: maximum length of the attribute value * * DEPRECATED: Use xmlNodeSetContentLen. * * See xmlStringGetNodeList. * * Returns a pointer to the first child or NULL if a memory * allocation failed. */

Source from the content-addressed store, hash-verified

1483 * allocation failed.
1484 */
1485xmlNodePtr
1486xmlStringLenGetNodeList(const xmlDoc *doc, const xmlChar *value, int len) {
1487 xmlNodePtr ret;
1488
1489 xmlNodeParseContentInternal(doc, NULL, value, len, &ret);
1490 return(ret);
1491}
1492
1493/**
1494 * xmlStringGetNodeList:

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected