mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 16:07:10 -06:00
25 lines
237 B
C++
Executable File
25 lines
237 B
C++
Executable File
#include "rar.hpp"
|
|
|
|
BitInput::BitInput()
|
|
{
|
|
InBuf=new byte[MAX_SIZE];
|
|
}
|
|
|
|
|
|
BitInput::~BitInput()
|
|
{
|
|
delete[] InBuf;
|
|
}
|
|
|
|
|
|
void BitInput::faddbits(int Bits)
|
|
{
|
|
addbits(Bits);
|
|
}
|
|
|
|
|
|
unsigned int BitInput::fgetbits()
|
|
{
|
|
return(getbits());
|
|
}
|