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

Function xmlHashRemoveEntry

ThirdParty/libxml2/vtklibxml2/hash.c:1232–1235  ·  view source on GitHub ↗

* xmlHashRemoveEntry: * @hash: hash table * @key: string key * @dealloc: deallocator function for removed item or NULL * * Find the entry specified by the @key and remove it from the hash table. * Payload will be freed with @dealloc. * * Returns 0 on success and -1 if no entry was found. */

Source from the content-addressed store, hash-verified

1230 * Returns 0 on success and -1 if no entry was found.
1231 */
1232int xmlHashRemoveEntry(xmlHashTablePtr hash, const xmlChar *key,
1233 xmlHashDeallocator dealloc) {
1234 return(xmlHashRemoveEntry3(hash, key, NULL, NULL, dealloc));
1235}
1236
1237/**
1238 * xmlHashRemoveEntry2:

Callers 6

xmlCatalogConvertEntryFunction · 0.85
xmlACatalogRemoveFunction · 0.85
xmlRemoveIDFunction · 0.85
xmlRemoveRefFunction · 0.85
xmlXPathRegisterNsFunction · 0.85
xmlRemoveEntityFunction · 0.85

Calls 1

xmlHashRemoveEntry3Function · 0.85

Tested by

no test coverage detected