Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 470 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 470 Bytes

BitSet in C

An implementation of bit sets in C.

Building

To build the static library, run the following commands from the terminal:

mkdir build && cd build && cmake .. && make ; cd ..

This will build libBitSet.a in ./bin directory.

Usage

Include BitSet.h in the source file and link to libBitSet.a while compiling the source file.

See include/BitsSet.h for information about functionality provided by this module.