libft
|
#include "libft.h"
Go to the source code of this file.
Functions | |
void | ft_lstiter (t_list *lst, void(*f)(t_list *elem)) |
Applies a function to each member of a list. More... | |
Applies a function to each member of a list.
lst | A pointer to the first link of a list. |
f | The address of a function to apply to each link of a list. |
Definition at line 22 of file ft_lstiter.c.