| 453 | } |
| 454 | |
| 455 | static unsigned int __bencode_hash_str(bencode_item_t *str) { |
| 456 | assert(str->type == BENCODE_STRING); |
| 457 | return __bencode_hash_str_len(str->iov[1].iov_base, str->iov[1].iov_len); |
| 458 | } |
| 459 | |
| 460 | static void __bencode_hash_insert(bencode_item_t *key, struct __bencode_hash *hash) { |
| 461 | unsigned int bucket, i; |
no test coverage detected