* xmlCopyAttributeTable: * @table: An attribute table * * Build a copy of an attribute table. * * Returns the new xmlAttributeTablePtr or NULL in case of error. */
| 1954 | * Returns the new xmlAttributeTablePtr or NULL in case of error. |
| 1955 | */ |
| 1956 | xmlAttributeTablePtr |
| 1957 | xmlCopyAttributeTable(xmlAttributeTablePtr table) { |
| 1958 | return(xmlHashCopySafe(table, xmlCopyAttribute, |
| 1959 | xmlFreeAttributeTableEntry)); |
| 1960 | } |
| 1961 | #endif /* LIBXML_TREE_ENABLED */ |
| 1962 | |
| 1963 | #ifdef LIBXML_OUTPUT_ENABLED |
no test coverage detected