2023-10-25 13:56:45 +02:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* :::::::: */
|
2023-10-26 19:11:30 +02:00
|
|
|
/* test1.c :+: :+: */
|
2023-10-25 13:56:45 +02:00
|
|
|
/* +:+ */
|
|
|
|
/* By: djonker <djonker@student.codam.nl> +#+ */
|
|
|
|
/* +#+ */
|
|
|
|
/* Created: 2020/11/14 21:06:17 by djonker #+# #+# */
|
2023-10-26 19:11:30 +02:00
|
|
|
/* Updated: 2023/10/18 17:08:52 by houtworm ######## odam.nl */
|
2023-10-25 13:56:45 +02:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#include "../../tmp/libft.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
t_list **list;
|
|
|
|
t_list *element[2];
|
|
|
|
t_list *last;
|
|
|
|
char *str[2];
|
|
|
|
|
|
|
|
str[0] = strdup("Hallo1");
|
|
|
|
str[1] = strdup("Hallo2");
|
|
|
|
element[0] = ft_lstnew(str[0]);
|
|
|
|
element[1] = ft_lstnew(str[1]);
|
|
|
|
list = &element[0];
|
|
|
|
ft_lstadd_back(list, element[1]);
|
|
|
|
last = ft_lstlast(*list);
|
|
|
|
r = 0;
|
|
|
|
if (strncmp(last->content, "Hallo2", 6))
|
|
|
|
r = 1;
|
|
|
|
free(str[0]);
|
|
|
|
free(str[1]);
|
|
|
|
free(last);
|
|
|
|
free(*list);
|
|
|
|
return (r);
|
|
|
|
}
|