MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlHashRemoveEntry2

Function xmlHashRemoveEntry2

ThirdParty/libxml2/vtklibxml2/hash.c:1250–1254  ·  view source on GitHub ↗

* xmlHashRemoveEntry2: * @hash: hash table * @key: first string key * @key2: second string key * @dealloc: deallocator function for removed item or NULL * * Remove an entry with two strings as key. * * See xmlHashRemoveEntry. * * Returns 0 on success and -1 in case of error. */

Source from the content-addressed store, hash-verified

1248 * Returns 0 on success and -1 in case of error.
1249 */
1250int
1251xmlHashRemoveEntry2(xmlHashTablePtr hash, const xmlChar *key,
1252 const xmlChar *key2, xmlHashDeallocator dealloc) {
1253 return(xmlHashRemoveEntry3(hash, key, key2, NULL, dealloc));
1254}
1255
1256/**
1257 * xmlHashRemoveEntry3:

Callers 4

xmlAddElementDeclFunction · 0.85
xmlXPathRegisterFuncNSFunction · 0.85

Calls 1

xmlHashRemoveEntry3Function · 0.85

Tested by

no test coverage detected