| 147 | } |
| 148 | |
| 149 | void BStream_writeUArray_(BStream *self, UArray *ba) { |
| 150 | BStream_writeInt32_(self, (int32_t)UArray_size(ba)); |
| 151 | UArray_append_(self->ba, ba); |
| 152 | self->index += UArray_size(ba); |
| 153 | } |
| 154 | |
| 155 | // reading -------------------------------------- |
| 156 |
nothing calls this directly
no test coverage detected