40 lines
1.4 KiB
C
40 lines
1.4 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* test3.c |o_o || | */
|
|
/* +:+ */
|
|
/* By: djonker <djonker@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2020/11/14 21:06:17 by djonker #+# #+# */
|
|
/* Updated: 2023/03/04 01:40:00 by houtworm \___)=(___/ */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../../tmp/libft.h"
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main(void)
|
|
{
|
|
int r;
|
|
t_list **list;
|
|
t_list *element[3];
|
|
char *str[3];
|
|
|
|
str[0] = strdup("Hallo1");
|
|
str[1] = strdup("Hallo2");
|
|
str[2] = strdup("Hallo3");
|
|
element[0] = ft_lstnew(str[0]);
|
|
element[1] = ft_lstnew(str[1]);
|
|
element[2] = ft_lstnew(str[2]);
|
|
list = &element[2];
|
|
ft_lstadd_front(list, element[1]);
|
|
ft_lstadd_front(list, element[0]);
|
|
ft_lstdelone(element[1], NULL);
|
|
r = 0;
|
|
ft_lstclear(list, NULL);
|
|
if (*list != NULL)
|
|
r = 1;
|
|
return (r);
|
|
}
|