* 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. */
| 1062 | * the comparison is considered to match. |
| 1063 | */ |
| 1064 | void |
| 1065 | xmlHashScan3(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: |
no test coverage detected