* 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. */
| 655 | * Returns 1 on success, 0 if an entry exists and -1 in case of error. |
| 656 | */ |
| 657 | int |
| 658 | xmlHashAdd3(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: |
no test coverage detected