Libft
Custom implementation of core libc functions with additional utility helpers.
Loading...
Searching...
No Matches
list_apply.c File Reference
#include "libft.h"
#include <string.h>
Include dependency graph for list_apply.c:

Functions

void list_iter (t_list lst, void(*f)(void *))
 Applies a function to each element of the list.
 
t_list list_map (t_list list, void *(*f)(void *), void(*del)(void *))
 Creates a new list by applying a function to each element.