pipex/libft/tests/bonus/lstmap/test6.c
2023-10-26 18:33:37 +02:00

43 lines
1.3 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* test6.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;
t_list *element[1];
char *str[1];
str[0] = strdup("Hallo1");
element[0] = ft_lstnew(str[0]);
list = &element[0];
copy = ft_lstmap(*list, &func, NULL);
r = 0;
if (strncmp(str[0], "aaalo1", 6))
r = 1;
free(str[0]);
free(*list);
free(copy);
return (r);
}