libutils

Yet another library of C utilities

User Manual

  1. Overview
  2. Categories
    1. I/O
    2. Memory Allocation
    3. Logging
    4. Math
    5. Sorting
    6. Text-Processing
    7. Bit-Processing
  3. 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.
*********************************************************************/