| 423 | } |
| 424 | |
| 425 | static inline bencode_item_t *bencode_dictionary_add_list(bencode_item_t *dict, const char *key) { |
| 426 | return bencode_dictionary_add(dict, key, bencode_list(bencode_item_buffer(dict))); |
| 427 | } |
| 428 | |
| 429 | static inline bencode_item_t *bencode_list_add_string(bencode_item_t *list, const char *s) { |
| 430 | return bencode_list_add(list, bencode_string(bencode_item_buffer(list), s)); |
nothing calls this directly
no test coverage detected