-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_clst_new.c
18 lines (16 loc) · 981 Bytes
/
ft_clst_new.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_clst_new.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kakiba <kotto555555@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/09 21:25:04 by kakiba #+# #+# */
/* Updated: 2022/12/09 21:28:30 by kakiba ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_clist *ft_clstnew(void *content)
{
return (ft_lstnew(content));
}