| 194 | } |
| 195 | |
| 196 | int32_t BStream_readInt32(BStream *self) { |
| 197 | int32_t v; |
| 198 | BStream_readNumber_size_(self, (unsigned char *)(&v), sizeof(int32_t)); |
| 199 | return v; |
| 200 | } |
| 201 | |
| 202 | #if !defined(__SYMBIAN32__) |
| 203 | int64_t BStream_readInt64(BStream *self) { |
no test coverage detected