| 141 | } |
| 142 | |
| 143 | void BStream_writeCString_(BStream *self, const char *s) { |
| 144 | size_t length = strlen(s); |
| 145 | BStream_writeInt32_(self, (int32_t)length); |
| 146 | BStream_writeData_length_(self, (unsigned char *)s, length); |
| 147 | } |
| 148 | |
| 149 | void BStream_writeUArray_(BStream *self, UArray *ba) { |
| 150 | BStream_writeInt32_(self, (int32_t)UArray_size(ba)); |
nothing calls this directly
no test coverage detected