| 369 | } |
| 370 | |
| 371 | static inline bencode_item_t *bencode_string(bencode_buffer_t *buf, const char *s) { |
| 372 | return bencode_string_len(buf, s, strlen(s)); |
| 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)); |
no test coverage detected