* xmlHashLookup2: * @hash: hash table * @key: first string key * @key2: second string key * * Find the payload specified by the (@key, @key2) tuple. * * Returns a pointer to the payload or NULL if no entry was found. */
| 847 | * Returns a pointer to the payload or NULL if no entry was found. |
| 848 | */ |
| 849 | void * |
| 850 | xmlHashLookup2(xmlHashTablePtr hash, const xmlChar *key, |
| 851 | const xmlChar *key2) { |
| 852 | return(xmlHashLookup3(hash, key, key2, NULL)); |
| 853 | } |
| 854 | |
| 855 | /** |
| 856 | * xmlHashQLookup: |
no test coverage detected