tgrekov-push_swap
HIVE push_swap July 2024
|
Definition in file ft_lstdelone_bonus.c.
#include "libft.h"
Go to the source code of this file.
Functions | |
void | ft_lstdelone (t_list *lst, void(*del)(void *)) |
Delete a node and it's content. | |
void ft_lstdelone | ( | t_list * | lst, |
void(*)(void *) | del | ||
) |
Delete a node and it's content.
[in,out] | lst | Pointer to the first node in the list |
[in] | del | Function used to properly handle the deletion of the node's content |
Definition at line 29 of file ft_lstdelone_bonus.c.
References s_list::content.