2023-04-15 06:46:13 +02:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* :::::::: */
|
2023-10-26 18:06:04 +02:00
|
|
|
/* test2.c :+: :+: */
|
2023-04-15 06:46:13 +02:00
|
|
|
/* +:+ */
|
|
|
|
/* By: djonker <djonker@student.codam.nl> +#+ */
|
|
|
|
/* +#+ */
|
|
|
|
/* Created: 2020/11/14 21:06:17 by djonker #+# #+# */
|
2023-10-26 18:06:04 +02:00
|
|
|
/* Updated: 2023/10/18 17:08:56 by houtworm ######## odam.nl */
|
2023-04-15 06:46:13 +02:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#include "../../tmp/libft.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
int *p;
|
|
|
|
t_list *list;
|
|
|
|
|
|
|
|
r = 0;
|
|
|
|
p = &r;
|
|
|
|
list = ft_lstnew(p);
|
|
|
|
if ((int *)list->content != p)
|
|
|
|
r = 1;
|
|
|
|
free (list);
|
|
|
|
return (r);
|
|
|
|
}
|