An implementation of popular data structures in C programming language.
Run the build.sh
script to automatically build and install the library.
If the script fails, manually perform the following commands:
Create a directory for building the project
mkdir build && cd build
Generate the Makefile using CMake
cmake ..
Build the library
make all
Install the library system-wide
sudo make install