* xmlStringGetNodeList: * @doc: a document (optional) * @value: an attribute value * * DEPRECATED: Use xmlNodeSetContent. * * Parse an attribute value and build a node list containing only * text and entity reference nodes. The resulting nodes will be * associated with the document if provided. The document is also * used to look up entities. * * The input is not validated. Syntax err
| 1510 | * allocation failed. |
| 1511 | */ |
| 1512 | xmlNodePtr |
| 1513 | xmlStringGetNodeList(const xmlDoc *doc, const xmlChar *value) { |
| 1514 | xmlNodePtr ret; |
| 1515 | |
| 1516 | xmlNodeParseContentInternal(doc, NULL, value, -1, &ret); |
| 1517 | return(ret); |
| 1518 | } |
| 1519 | |
| 1520 | /** |
| 1521 | * xmlNodeListGetStringInternal: |
nothing calls this directly
no test coverage detected