| 345 | return ntohs(tmp); |
| 346 | } |
| 347 | unsigned ByteVector::readUInt16(size_t &rp) { |
| 348 | unsigned result = getUInt16(rp); |
| 349 | rp+=2; |
| 350 | return result; |
| 351 | } |
| 352 | |
| 353 | unsigned ByteVector::getUInt32(size_t readIndex) const { // 4 byte value |
| 354 | BVASSERT(readIndex <= size() - 4); |
no outgoing calls
no test coverage detected