1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
# Linked list assignment The linked list stuff is in node.c and higher level list functions in llist.c. Build with make: ``` make ``` To build and run ``` make run ``` To clean up when we are done. ``` make clean ```