| 92 | } |
| 93 | |
| 94 | static void __bencode_list_init(bencode_item_t *list) { |
| 95 | list->type = BENCODE_LIST; |
| 96 | list->iov[0].iov_base = "l"; |
| 97 | __bencode_container_init(list); |
| 98 | } |
| 99 | |
| 100 | static struct __bencode_buffer_piece *__bencode_piece_new(unsigned int size) { |
| 101 | struct __bencode_buffer_piece *ret; |
no test coverage detected