libft/tests/bonus/lstmap/test5.c
2023-10-26 18:06:04 +02:00

36 lines
1.2 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* test5.c :+: :+: */
/* +:+ */
/* By: djonker <djonker@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/14 21:06:17 by djonker #+# #+# */
/* Updated: 2023/10/18 17:08:55 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../../tmp/libft.h"
#include <stdio.h>
#include <string.h>
void *func(void *content)
{
memset(content, 'a', 3);
return (content);
}
int main(void)
{
int r;
t_list *list;
t_list *copy;
list = NULL;
copy = ft_lstmap(list, &func, &free);
r = 0;
if (copy)
r = 1;
return (r);
}