* xmlCopyEntitiesTable: * @table: An entity table * * Build a copy of an entity table. * * Returns the new xmlEntitiesTablePtr or NULL in case of error. */
| 917 | * Returns the new xmlEntitiesTablePtr or NULL in case of error. |
| 918 | */ |
| 919 | xmlEntitiesTablePtr |
| 920 | xmlCopyEntitiesTable(xmlEntitiesTablePtr table) { |
| 921 | return(xmlHashCopySafe(table, xmlCopyEntity, xmlFreeEntityWrapper)); |
| 922 | } |
| 923 | #endif /* LIBXML_TREE_ENABLED */ |
| 924 | |
| 925 | #ifdef LIBXML_OUTPUT_ENABLED |
no test coverage detected