mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
19 lines
267 B
C++
19 lines
267 B
C++
#include "globals.h"
|
|
#include "bytes.h"
|
|
#include <assert.h>
|
|
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
Bytes bytes;
|
|
ByteWriter bw(bytes);
|
|
BitWriter bitw(bw);
|
|
|
|
bitw.push(0x1e, 5);
|
|
bitw.flush();
|
|
|
|
assert(bytes == Bytes{ 0x1e });
|
|
|
|
return 0;
|
|
}
|
|
|