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

Function xmlNodeSetContentLen

ThirdParty/libxml2/vtklibxml2/tree.c:5798–5801  ·  view source on GitHub ↗

* xmlNodeSetContentLen: * @cur: the node being modified * @content: the new value of the content * @len: the size of @content * * See xmlNodeSetContent. * * Returns 0 on success, 1 on error, -1 if a memory allocation failed. */

Source from the content-addressed store, hash-verified

5796 * Returns 0 on success, 1 on error, -1 if a memory allocation failed.
5797 */
5798int
5799xmlNodeSetContentLen(xmlNodePtr cur, const xmlChar *content, int len) {
5800 return(xmlNodeSetContentInternal(cur, content, len));
5801}
5802#endif /* LIBXML_TREE_ENABLED */
5803
5804/**

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected