| 116 | } |
| 117 | |
| 118 | static u32 map_be32(const struct gossmap *map, size_t offset) |
| 119 | { |
| 120 | be32 be32; |
| 121 | map_copy(map, offset, &be32, sizeof(be32)); |
| 122 | return be32_to_cpu(be32); |
| 123 | } |
| 124 | |
| 125 | static u64 map_be64(const struct gossmap *map, size_t offset) |
| 126 | { |
no test coverage detected