This commit is contained in:
Nathan Lebrun
2025-02-06 11:27:00 +01:00
parent 2bfdc3814f
commit 2e015152cf
5 changed files with 13 additions and 3 deletions

View File

@@ -72,3 +72,12 @@ t_nodell *cutll(t_node *lst, t_node *expected, size_t limiter)
}
return (out);
}
void free_lltab(t_nodell *nodell)
{
while (nodell)
{
free_linked_list(nodell->node);
nodell = nodell->next;
}
}