CLC -- Containers library in C
Doubly linked list implementation in C. The flexible nature and loosely coupled of the design has allow it to be use with minimal effort, increasing adoption and reducing implementation time.
Create static lib
$ gcc -c -o libdlist lib/container/list.c -I include/
$ ar rcs libdlist.a libdlist
Use lib
$ gcc -o demo main.c -L. -ldlist -I include/
Run
$ ./demo