* xmlCopyElementTable: * @table: An element table * * Build a copy of an element table. * * Returns the new xmlElementTablePtr or NULL in case of error. */
| 1406 | * Returns the new xmlElementTablePtr or NULL in case of error. |
| 1407 | */ |
| 1408 | xmlElementTablePtr |
| 1409 | xmlCopyElementTable(xmlElementTablePtr table) { |
| 1410 | return(xmlHashCopySafe(table, xmlCopyElement, xmlFreeElementTableEntry)); |
| 1411 | } |
| 1412 | #endif /* LIBXML_TREE_ENABLED */ |
| 1413 | |
| 1414 | #ifdef LIBXML_OUTPUT_ENABLED |
no test coverage detected