| 230 | } |
| 231 | |
| 232 | void fromwire_utf8_array(const u8 **cursor, size_t *max, char *arr, size_t num) |
| 233 | { |
| 234 | fromwire(cursor, max, arr, num); |
| 235 | if (!utf8_check(arr, num)) |
| 236 | fromwire_fail(cursor, max); |
| 237 | } |
| 238 | |
| 239 | u8 *fromwire_tal_arrn(const tal_t *ctx, |
| 240 | const u8 **cursor, size_t *max, size_t num) |
nothing calls this directly
no test coverage detected