Skip to content

Files

Latest commit

de04c14 · Dec 2, 2022

History

History

0x12-singly_linked_lists

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Nov 28, 2022
Nov 28, 2022
Nov 28, 2022
Nov 28, 2022
Nov 28, 2022
Nov 28, 2022
Nov 28, 2022
Dec 2, 2022
Nov 28, 2022
Nov 28, 2022
Nov 28, 2022
Nov 28, 2022
Nov 28, 2022
Nov 28, 2022
Nov 28, 2022

FILE 0-print_list.c is a function that prints all the elements of a list_t list.

FILE 1-list_len.c is a function that returns the number of elements in a linked list_t list.

FILE 2-add_node.c is a function that adds a new node at the beginning of a list_t list.

FILE 3-add_node_end.c is a function that adds a new node at the end of a list_t list.

FILE 4-free_list.c is a function that frees a list_t list.