* 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. */
| 1483 | * allocation failed. |
| 1484 | */ |
| 1485 | xmlNodePtr |
| 1486 | xmlStringLenGetNodeList(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: |
nothing calls this directly
no test coverage detected