| 236 | } |
| 237 | |
| 238 | const char *BStream_readCString(BStream *self) { |
| 239 | BStream_readUArray_(self, self->tmp); |
| 240 | return (const char *)UArray_bytes(self->tmp); |
| 241 | } |
| 242 | |
| 243 | // tagged writing -------------------------------------- |
| 244 |
nothing calls this directly
no test coverage detected