| 373 | } |
| 374 | |
| 375 | static inline bencode_item_t *bencode_string_dup(bencode_buffer_t *buf, const char *s) { |
| 376 | return bencode_string_len_dup(buf, s, strlen(s)); |
| 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); |
no test coverage detected