pub unsafe fn hash_remove_entry3(
table: *mut HashTable,
name: *const xmlChar,
name2: *const xmlChar,
name3: *const xmlChar,
f: Option<xmlHashDeallocator>,
) -> c_intExpand description
Remove an entry by three keys.
§UPSTREAM-PARITY
int xmlHashRemoveEntry3(xmlHashTablePtr table, const xmlChar *name,
const xmlChar *name2, const xmlChar *name3,
xmlHashDeallocator f);Returns 0 on success, -1 if not found.
§SAFETY
tablemust be a valid pointer to a HashTable, or NULL.name,name2,name3must be valid null-terminated strings or NULL.fmay be NULL.