* 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. */
| 5796 | * Returns 0 on success, 1 on error, -1 if a memory allocation failed. |
| 5797 | */ |
| 5798 | int |
| 5799 | xmlNodeSetContentLen(xmlNodePtr cur, const xmlChar *content, int len) { |
| 5800 | return(xmlNodeSetContentInternal(cur, content, len)); |
| 5801 | } |
| 5802 | #endif /* LIBXML_TREE_ENABLED */ |
| 5803 | |
| 5804 | /** |
nothing calls this directly
no test coverage detected