# A linked list implementation in C ## This is simply a implementation to test my knowledge about C and linked lists. It's not meant to be anything close to a library for helping you with collection types This implementation is automatically allocating and freeing memory (kind of). If you wanted to use this implementation make sure to always call `linked_list_clean(list)` if you're done with your program/list ## Compilation **Dependencies** 1. A C compiler (`gcc` is used) 2. `make` If you have all of the dependencies installed you can just run `make`.