linked list is a very use full data structure. if you don't know what it is, checkout this link
Just download linkedList.h and linkedList.c and put them next to your main file (in a same directory).
include linkedList.h in your main file:
#include "linkedList.h"
compile your file like this:
$ gcc -o out main.c linkedList.c
and the run your project:
$ ./out
in widows just use this:
> out
you can find useful examples for how each function works in examples.c
if you find any bug in functions, please fork this repository and make a function in examples.c file and write some comments about bug that you found and put the code of your case in it. Thanks
version 1 coming soon ...