| 419 | } |
| 420 | |
| 421 | static inline bencode_item_t *bencode_dictionary_add_dictionary(bencode_item_t *dict, const char *key) { |
| 422 | return bencode_dictionary_add(dict, key, bencode_dictionary(bencode_item_buffer(dict))); |
| 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))); |
nothing calls this directly
no test coverage detected