Function hash_update_entry3
Source pub unsafe fn hash_update_entry3(
table: *mut HashTable,
name: *const xmlChar,
name2: *const xmlChar,
name3: *const xmlChar,
userdata: *mut c_void,
f: Option<xmlHashDeallocator>,
) -> c_int
Expand description
Update an entry with three keys.
§UPSTREAM-PARITY
int xmlHashUpdateEntry3(xmlHashTablePtr table, const xmlChar *name,
const xmlChar *name2, const xmlChar *name3,
void *userdata, xmlHashDeallocator f);
§SAFETY
Same as hash_add_entry3 with an additional deallocator.