Datastructures or simply 'DS' is a C library for dealing with data structures.
Run make after cloning the code from the git repository.
git clone https://github.com/borjatarraso/datastructures.gitlist
# checks if the list is empty
is_linked_list_empty(list)
# adds value to a list
add_element_linked_list(list, value)
# removes value from a list
del_element_linked_list(list, value)
# remove a linked list
remove_linked_list(list)Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update unit tests as appropriate.