| 435 | } |
| 436 | |
| 437 | static inline bencode_item_t *bencode_list_add_dictionary(bencode_item_t *list) { |
| 438 | return bencode_list_add(list, bencode_dictionary(bencode_item_buffer(list))); |
| 439 | } |
| 440 | |
| 441 | static inline bencode_item_t *bencode_dictionary_get(bencode_item_t *dict, const char *key) { |
| 442 | if (!key) |
nothing calls this directly
no test coverage detected