* xmlGetEntityFromTable: * @table: an entity table * @name: the entity name * @parameter: look for parameter entities * * Do an entity lookup in the table. * returns the corresponding parameter entity, if found. * * Returns A pointer to the entity structure or NULL if not found. */
| 418 | * Returns A pointer to the entity structure or NULL if not found. |
| 419 | */ |
| 420 | static xmlEntityPtr |
| 421 | xmlGetEntityFromTable(xmlEntitiesTablePtr table, const xmlChar *name) { |
| 422 | return((xmlEntityPtr) xmlHashLookup(table, name)); |
| 423 | } |
| 424 | |
| 425 | /** |
| 426 | * xmlGetParameterEntity: |
no test coverage detected