| 13 | #include <wire/peer_wire.h> |
| 14 | |
| 15 | static u8 *prefix_arr(const u8 *data, size_t size, u16 prefix) |
| 16 | { |
| 17 | u8 *p = tal_arr(NULL, u8, 0); |
| 18 | towire_u16(&p, prefix); |
| 19 | towire(&p, data, size); |
| 20 | return p; |
| 21 | } |
| 22 | |
| 23 | /* The init function used by all fuzz-wire-* targets. */ |
| 24 | void init(int *argc, char ***argv) |
nothing calls this directly
no test coverage detected