A generic implementation of a linked list data structure written in C.
The objective of this library is to provide a generically typed linked list that can be used in C and in C++. This implementation utilizes a stack to quickly add elements to the list.
-
Create functions for removing elements from the linked list..linked_list_pop()
andlinked_list_remove_at(int index)
-
Create functions for inserting elements into the list.linked_list_append()
andlinked_list_insert_at(int index)
. - Have code build on Windows and other OS.