* xmlNewElementContent: * @name: the subelement name or NULL * @type: the type of element content decl * * Allocate an element content structure. * Deprecated in favor of xmlNewDocElementContent * * Returns NULL if not, otherwise the new element content structure */
| 792 | * Returns NULL if not, otherwise the new element content structure |
| 793 | */ |
| 794 | xmlElementContentPtr |
| 795 | xmlNewElementContent(const xmlChar *name, xmlElementContentType type) { |
| 796 | return(xmlNewDocElementContent(NULL, name, type)); |
| 797 | } |
| 798 | |
| 799 | /** |
| 800 | * xmlCopyDocElementContent: |
nothing calls this directly
no test coverage detected