| 149 | } |
| 150 | |
| 151 | static u64 map_be64(const struct gossmap *map, u64 offset) |
| 152 | { |
| 153 | be64 be64; |
| 154 | map_copy(map, offset, &be64, sizeof(be64)); |
| 155 | return be64_to_cpu(be64); |
| 156 | } |
| 157 | |
| 158 | static void map_nodeid(const struct gossmap *map, u64 offset, |
| 159 | struct node_id *id) |
no test coverage detected