| 231 | } |
| 232 | |
| 233 | UArray *BStream_readUArray(BStream *self) { |
| 234 | BStream_readUArray_(self, self->tmp); |
| 235 | return self->tmp; |
| 236 | } |
| 237 | |
| 238 | const char *BStream_readCString(BStream *self) { |
| 239 | BStream_readUArray_(self, self->tmp); |
nothing calls this directly
no test coverage detected