리스트 구조 typedef structs_list { void*content; struct s_list*next; }t_list; 1. ft_lstnew 새로운 리스트 t_list를 만들어 동적할당하고 content값은 t_list -> content변수에 저장하고 t_list -> next에 NULL값으로 초기화한다. 함수이름 - ft_lstnew 프로토타입 - t_list *ft_lstnew(void *content); 매개변수 -void *content : 새로운 리스트를 만들 content 리턴값 - 생성된 리스트 #include "libft.h" t_list*ft_lstnew(void *content) { t_list *list; if (!(list = (t_list *)malloc(sizeof..