* xmlNodeAddContent: * @cur: the node being modified * @content: extra content * * Append the extra substring to the node content. * NOTE: In contrast to xmlNodeSetContent(), @content is supposed to be * raw text, so unescaped XML special chars are allowed, entity * references are not supported. * * Returns 0 on success, 1 on error, -1 if a memory allocation failed. */
| 5863 | * Returns 0 on success, 1 on error, -1 if a memory allocation failed. |
| 5864 | */ |
| 5865 | int |
| 5866 | xmlNodeAddContent(xmlNodePtr cur, const xmlChar *content) { |
| 5867 | return(xmlNodeAddContentLen(cur, content, xmlStrlen(content))); |
| 5868 | } |
| 5869 | |
| 5870 | /** |
| 5871 | * xmlTextMerge: |
no test coverage detected