ft_lstlast

nawkim·2021년 5월 26일
0

libft

목록 보기
39/44

1. 프로토타입

t_list	*ft_lstlast(t_list *lst)

2. 용도

3. 리턴값

4. 코드 구현

#include "libft.h"

t_list	*ft_lstlast(t_list *lst)
{
	if (lst == NULL)
		return (NULL);
	while (lst->next != NULL)
	{
		lst = lst->next;
	}
	return (lst);
}

5. 코드 설명

profile
공부 기록.

0개의 댓글