| 205 | } |
| 206 | |
| 207 | void fromwire_utf8_array(const u8 **cursor, size_t *max, char *arr, size_t num) |
| 208 | { |
| 209 | fromwire(cursor, max, arr, num); |
| 210 | if (!utf8_check(arr, num)) |
| 211 | fromwire_fail(cursor, max); |
| 212 | } |
| 213 | |
| 214 | u8 *fromwire_tal_arrn(const tal_t *ctx, |
| 215 | const u8 **cursor, size_t *max, size_t num) |
nothing calls this directly
no test coverage detected