| 537 | } |
| 538 | |
| 539 | static inline bencode_item_t *bencode_dictionary_add_iovec(bencode_item_t *dict, const char *key, |
| 540 | const struct iovec *iov, int iov_cnt, int str_len) |
| 541 | { |
| 542 | return bencode_dictionary_add(dict, key, bencode_string_iovec(bencode_item_buffer(dict), iov, iov_cnt, str_len)); |
| 543 | } |
| 544 | |
| 545 | #endif |
nothing calls this directly
no test coverage detected