| 225 | } |
| 226 | |
| 227 | void BStream_readUArray_(BStream *self, UArray *b) { |
| 228 | size_t size = BStream_readInt32(self); |
| 229 | unsigned char *data = BStream_readDataOfLength_(self, size); |
| 230 | UArray_setData_type_size_copy_(b, data, CTYPE_uint8_t, size, 1); |
| 231 | } |
| 232 | |
| 233 | UArray *BStream_readUArray(BStream *self) { |
| 234 | BStream_readUArray_(self, self->tmp); |
no test coverage detected