Function: GetBitArray/GetBitArrayWithDebugInfo Description: Retrieves a client-specified "array" of bits. The main difference between this function, and the GetBits function is that this one can potentially retrieve more than 32 bits ************************************************************************/
| 319 | is that this one can potentially retrieve more than 32 bits |
| 320 | ************************************************************************/ |
| 321 | void BitStream::GetBitArray(uint8_t *tgt, uint32_t nBits) |
| 322 | { |
| 323 | ByteAlign(true,false); |
| 324 | GetBytes(tgt,BITS_TO_BYTES(nBits)); |
| 325 | } |
| 326 | |
| 327 | /** |
| 328 | \brief Retrieves a null-terminated C-style string from the bit stream |
no outgoing calls
no test coverage detected