| 135 | } |
| 136 | |
| 137 | static u16 map_be16(const struct gossmap *map, u64 offset) |
| 138 | { |
| 139 | be16 be16; |
| 140 | map_copy(map, offset, &be16, sizeof(be16)); |
| 141 | return be16_to_cpu(be16); |
| 142 | } |
| 143 | |
| 144 | static u32 map_be32(const struct gossmap *map, u64 offset) |
| 145 | { |
no test coverage detected