Move forward by 'Bits' bits.
| 23 | |
| 24 | // Move forward by 'Bits' bits. |
| 25 | void addbits(uint Bits) |
| 26 | { |
| 27 | Bits+=InBit; |
| 28 | InAddr+=Bits>>3; |
| 29 | InBit=Bits&7; |
| 30 | } |
| 31 | |
| 32 | // Return 16 bits from current position in the buffer. |
| 33 | // Bit at (InAddr,InBit) has the highest position in returning data. |
no outgoing calls
no test coverage detected