| 102 | } |
| 103 | |
| 104 | static u8 map_u8(const struct gossmap *map, size_t offset) |
| 105 | { |
| 106 | u8 u8; |
| 107 | map_copy(map, offset, &u8, sizeof(u8)); |
| 108 | return u8; |
| 109 | } |
| 110 | |
| 111 | static u16 map_be16(const struct gossmap *map, size_t offset) |
| 112 | { |
no test coverage detected