리스트 생성 함수
typedef struct s_list
{
void *content;
struct s_list *next;
} t_list;
t_list *ft_lstnew(void *content);
t_list * 형 데이터로 리턴
malloc
content
는 파라미터로준 변수 content
로 초기화된다.next
는 NULL
로 초기화 된다.테스트
char str[] = "hello";
int num = 5;
t_list *list;
list = ft_lstnew(str);
printf("list content : %s, next : %p\n", list->content, list->next); // list content : hello, next : 0x0