libutils
Yet another library of C utilities
User Manual
- Overview
- Categories
- I/O
- Memory Allocation
- Logging
- Math
- Sorting
- Text-Processing
- Bit-Processing
- Usage
Bit Processing
/********************************************************************
Binary feature support
This library support bit features (0/1) represented as an array
of 8-bit bytes (unsigned chars).
There are several methods of working with them. Note that they
are general not the best to use for large numbers of bits, since
they are more inefficient than handling one byte at a time. But,
they are simple to understand and use.
*********************************************************************/