pub unsafe fn hash_lookup3(
table: *mut HashTable,
name: *const xmlChar,
name2: *const xmlChar,
name3: *const xmlChar,
) -> *mut c_voidExpand description
Look up an entry by three keys.
§UPSTREAM-PARITY
void *xmlHashLookup3(xmlHashTablePtr table, const xmlChar *name,
const xmlChar *name2, const xmlChar *name3);Returns the payload, or NULL if not found.
§SAFETY
tablemust be a valid pointer to a HashTable, or NULL.name,name2,name3must be valid null-terminated strings or NULL.