Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/steinwurf/bnb

An endianness aware stream reader for Bits'N'Bytes
https://github.com/steinwurf/bnb

bit-manipulation byte-stream endianness stream-reader

Last synced: 11 days ago
JSON representation

An endianness aware stream reader for Bits'N'Bytes

Awesome Lists containing this project

README

        

===
bnb
===

.. image:: https://travis-ci.org/steinwurf/bnb.svg?branch=master
:target: https://travis-ci.org/steinwurf/bnb

bnb is a library for reading bits and bytes. It provides an error resilient API
which is useful for parsing untrusteded data.
Additionally it has build-in validation functionality that lets the user verify
the data.

Use as Dependency in CMake
--------------------------

To depend on this project when using the CMake build system, add the following
in your CMake build script:

::

add_subdirectory("/path/to/bnb" bnb)
target_link_libraries( steinwurf::bnb)

Where ```` is replaced by your target.