* xmlCopyNotationTable: * @table: A notation table * * Build a copy of a notation table. * * Returns the new xmlNotationTablePtr or NULL in case of error. */
| 2199 | * Returns the new xmlNotationTablePtr or NULL in case of error. |
| 2200 | */ |
| 2201 | xmlNotationTablePtr |
| 2202 | xmlCopyNotationTable(xmlNotationTablePtr table) { |
| 2203 | return(xmlHashCopySafe(table, xmlCopyNotation, xmlFreeNotationTableEntry)); |
| 2204 | } |
| 2205 | #endif /* LIBXML_TREE_ENABLED */ |
| 2206 | |
| 2207 | #ifdef LIBXML_OUTPUT_ENABLED |
no test coverage detected