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

Function xmlHashAdd3

ThirdParty/libxml2/vtklibxml2/hash.c:657–662  ·  view source on GitHub ↗

* xmlHashAdd3: * @hash: hash table * @key: first string key * @key2: second string key * @key3: third string key * @payload: pointer to the payload * * Add a hash table entry with three strings as key. * * See xmlHashAdd. * * Available since 2.13.0. * * Returns 1 on success, 0 if an entry exists and -1 in case of error. */

Source from the content-addressed store, hash-verified

655 * Returns 1 on success, 0 if an entry exists and -1 in case of error.
656 */
657int
658xmlHashAdd3(xmlHashTablePtr hash, const xmlChar *key,
659 const xmlChar *key2, const xmlChar *key3,
660 void *payload) {
661 return(xmlHashUpdateInternal(hash, key, key2, key3, payload, NULL, 0));
662}
663
664/**
665 * xmlHashAddEntry:

Callers 2

xmlAddAttributeDeclFunction · 0.85
xmlHashCopySafeFunction · 0.85

Calls 1

xmlHashUpdateInternalFunction · 0.85

Tested by

no test coverage detected