12 #ifndef CONWAY_LINKED_LIST 13 #define CONWAY_LINKED_LIST void linked_list_free(linked_list list)
Free a linked list from memory.
Definition: linked_list_cell.c:136
void linked_list_insert_unsorted(linked_list *p_list, int row, int column)
Insert an element into a linked list, at the first position.
Definition: linked_list_cell.c:31
void linked_list_delete(linked_list *p_list, int row, int column)
Delete an element from a linked list.
Definition: linked_list_cell.c:104
linked_cell linked_list_get(linked_list list, int idx)
Get a cell from a linked list by its index.
Definition: linked_list_cell.c:10
Definition: linked_list_cell.h:18
void linked_list_insert(linked_list *p_list, int row, int column)
Insert an element into a linked list, sorted by row and column.
Definition: linked_list_cell.c:41