* xmlCreateEntitiesTable: * * create and initialize an empty entities hash table. * This really doesn't make sense and should be deprecated * * Returns the xmlEntitiesTablePtr just created or NULL in case of error. */
| 822 | * Returns the xmlEntitiesTablePtr just created or NULL in case of error. |
| 823 | */ |
| 824 | xmlEntitiesTablePtr |
| 825 | xmlCreateEntitiesTable(void) { |
| 826 | return((xmlEntitiesTablePtr) xmlHashCreate(0)); |
| 827 | } |
| 828 | |
| 829 | /** |
| 830 | * xmlFreeEntityWrapper: |
nothing calls this directly
no test coverage detected