| 495 | } |
| 496 | |
| 497 | static inline bencode_item_t *bencode_decode_expect_str(bencode_buffer_t *buf, const str *s, bencode_type_t expect) { |
| 498 | return bencode_decode_expect(buf, s->s, s->len, expect); |
| 499 | } |
| 500 | |
| 501 | static inline bencode_item_t *bencode_dictionary_get_expect(bencode_item_t *dict, const char *key, bencode_type_t expect) { |
| 502 | bencode_item_t *ret; |
nothing calls this directly
no test coverage detected