* xmlHashQLookup2: * @hash: hash table * @prefix: first prefix * @name: first local name * @prefix2: second prefix * @name2: second local name * * Find the payload specified by the QNames tuple. * * Returns a pointer to the payload or NULL if no entry was found. */
| 881 | * Returns a pointer to the payload or NULL if no entry was found. |
| 882 | */ |
| 883 | void * |
| 884 | xmlHashQLookup2(xmlHashTablePtr hash, const xmlChar *prefix, |
| 885 | const xmlChar *name, const xmlChar *prefix2, |
| 886 | const xmlChar *name2) { |
| 887 | return(xmlHashQLookup3(hash, prefix, name, prefix2, name2, NULL, NULL)); |
| 888 | } |
| 889 | |
| 890 | /** |
| 891 | * xmlHashLookup3: |
no test coverage detected