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

Function xmlHashScan3

ThirdParty/libxml2/vtklibxml2/hash.c:1064–1072  ·  view source on GitHub ↗

* xmlHashScan3: * @hash: hash table * @key: first string key or NULL * @key2: second string key or NULL * @key3: third string key or NULL * @scan: scanner function for items in the hash * @data: extra data passed to @scan * * Scan the hash @table and apply @scan to each value matching * (@key, @key2, @key3) tuple. If one of the keys is null, * the comparison is considered to match. */

Source from the content-addressed store, hash-verified

1062 * the comparison is considered to match.
1063 */
1064void
1065xmlHashScan3(xmlHashTablePtr hash, const xmlChar *key,
1066 const xmlChar *key2, const xmlChar *key3,
1067 xmlHashScanner scan, void *data) {
1068 stubData sdata;
1069 sdata.data = data;
1070 sdata.scan = scan;
1071 xmlHashScanFull3(hash, key, key2, key3, stubHashScannerFull, &sdata);
1072}
1073
1074/**
1075 * xmlHashScanFull3:

Callers 1

xmlValidateAttributeDeclFunction · 0.85

Calls 1

xmlHashScanFull3Function · 0.85

Tested by

no test coverage detected