| 109 | } |
| 110 | |
| 111 | static u16 map_be16(const struct gossmap *map, size_t offset) |
| 112 | { |
| 113 | be16 be16; |
| 114 | map_copy(map, offset, &be16, sizeof(be16)); |
| 115 | return be16_to_cpu(be16); |
| 116 | } |
| 117 | |
| 118 | static u32 map_be32(const struct gossmap *map, size_t offset) |
| 119 | { |
no test coverage detected