* xmlNodeParseContent: * @node: an element or attribute * @content: text content with XML references * @len: maximum length of content * * Parse content and replace the node's children with the resulting * node list. * * @content is expected to be a valid XML attribute value possibly * containing character and entity references. Syntax errors * and references to undeclared entities ar
| 1465 | * Returns 0 on success, -1 if a memory allocation failed. |
| 1466 | */ |
| 1467 | int |
| 1468 | xmlNodeParseContent(xmlNodePtr node, const xmlChar *content, int len) { |
| 1469 | return(xmlNodeParseContentInternal(node->doc, node, content, len, NULL)); |
| 1470 | } |
| 1471 | |
| 1472 | /** |
| 1473 | * xmlStringLenGetNodeList: |
no test coverage detected