| 377 | } |
| 378 | |
| 379 | static inline bencode_item_t *bencode_str(bencode_buffer_t *buf, const str *s) { |
| 380 | return bencode_string_len(buf, s->s, s->len); |
| 381 | } |
| 382 | |
| 383 | static inline bencode_item_t *bencode_str_dup(bencode_buffer_t *buf, const str *s) { |
| 384 | return bencode_string_len_dup(buf, s->s, s->len); |
no test coverage detected