Commit b8d08aa6 authored by Chris's avatar Chris
Browse files

ll improvements

parent 79acbdd3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ int main(void) {
    head = &first_element;
    delete_linked_list(head);

    // sanity check: this should print nothing
    head = &first_element;
    while ((*head) != NULL) {
        printf("value is %d\n", (*head)->value);