CPP Bitstring (C++ Bitstring)
Latest Docs (Doxygen)
CPP Bitstring is a library that will help you to deal with random data that you need to parse and process.
Inspired by Python's Bitstring, CPP Bitstring is able to perform read/write operations on random chunks of data, letting you to seek, rewind, read and patch the data.
This is still a basic library, you'll probably miss quite some things, if so, please use the New Issue button.
How to build
You'll need meson
, python3
and ninja-build
. Once you have those, just run:
mkdir build
cd build
meson ..
ninja
How to run tests
Build the project, and run build/unittests
.