| 474 | } |
| 475 | |
| 476 | static inline char *bencode_dictionary_get_str_dup(bencode_item_t *dict, const char *key, str *str) { |
| 477 | str->s = bencode_dictionary_get_string_dup(dict, key, &str->len); |
| 478 | return str->s; |
| 479 | } |
| 480 | |
| 481 | static inline long long int bencode_dictionary_get_integer(bencode_item_t *dict, const char *key, long long int defval) { |
| 482 | bencode_item_t *val; |
no test coverage detected