aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_lstdelone.c
Commit message (Collapse)AuthorAgeFilesLines
* Implement libft Part 3 (linked lists) with testsThomas Vanbesien2026-02-211-0/+9
Add t_list struct and 9 linked list functions: ft_lstnew, ft_lstadd_front, ft_lstsize, ft_lstlast, ft_lstadd_back, ft_lstdelone, ft_lstclear, ft_lstiter, ft_lstmap.