Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 428 Bytes

File metadata and controls

12 lines (10 loc) · 428 Bytes

CLC -- Containers library in C

list

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