* xmlHashLookup: * @hash: hash table * @key: string key * * Find the entry specified by @key. * * Returns a pointer to the payload or NULL if no entry was found. */
| 832 | * Returns a pointer to the payload or NULL if no entry was found. |
| 833 | */ |
| 834 | void * |
| 835 | xmlHashLookup(xmlHashTablePtr hash, const xmlChar *key) { |
| 836 | return(xmlHashLookup3(hash, key, NULL, NULL)); |
| 837 | } |
| 838 | |
| 839 | /** |
| 840 | * xmlHashLookup2: |