• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-Apr-2020-

MakefileH A D03-Apr-2020283 1511

README.mdH A D03-Apr-2020462 65

list.cH A D03-Apr-20207.6 KiB320228

list.hH A D03-Apr-20203.7 KiB9542

main.cH A D03-Apr-20203.4 KiB143111

README.md

1# A Doubly Linked List in C
2This is just a small, simple doubly linked list implementation I did for fun.
3The headerfile should be selv-explanitory, otherwise, the examples in main.c will surely explain how to use it. It is intended for static linkage, so just copy the list.c and list.h files to your project and include list.h to start using it.
4make lib - generates the list as a static and shared lib
5make test - generates a binary which exercieses the lib.
6