| 122 | } |
| 123 | |
| 124 | void towire_utf8_array(u8 **pptr, const char *arr, size_t num) |
| 125 | { |
| 126 | assert(utf8_check(arr, num)); |
| 127 | towire(pptr, arr, num); |
| 128 | } |
| 129 | |
| 130 | void towire_pad(u8 **pptr, size_t num) |
| 131 | { |
nothing calls this directly
no test coverage detected