https://github.com/zedshaw/liblcthw/blob/master/tests/list_algos_tests.c#L54
Here we are calling List_create, a function that until now has taken no args, on words, which is the list of words that we just destroyed.
Should this line be words = create_words();?
https://github.com/zedshaw/liblcthw/blob/master/tests/list_algos_tests.c#L54
Here we are calling
List_create, a function that until now has taken no args, onwords, which is the list of words that we just destroyed.Should this line be
words = create_words();?