Skip to content

truongluan303/c-data-structures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C Data Structures Library

An implementation of popular data structures in C programming language.

Build & Install The Shared Library

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