| 142 | } |
| 143 | |
| 144 | static u32 map_be32(const struct gossmap *map, u64 offset) |
| 145 | { |
| 146 | be32 be32; |
| 147 | map_copy(map, offset, &be32, sizeof(be32)); |
| 148 | return be32_to_cpu(be32); |
| 149 | } |
| 150 | |
| 151 | static u64 map_be64(const struct gossmap *map, u64 offset) |
| 152 | { |
no test coverage detected