| 252 | } |
| 253 | |
| 254 | bencode_item_t *bencode_string_len(bencode_buffer_t *buf, const char *s, int len) { |
| 255 | return __bencode_string_alloc(buf, s, len, len, 1, BENCODE_STRING); |
| 256 | } |
| 257 | |
| 258 | bencode_item_t *bencode_string_iovec(bencode_buffer_t *buf, const struct iovec *iov, int iov_cnt, int str_len) { |
| 259 | int i; |
no test coverage detected