23 lines
1.0 KiB
C
23 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_lstprint_char.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: allefebv <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2019/02/02 12:18:10 by allefebv #+# #+# */
|
|
/* Updated: 2019/04/23 13:53:16 by allefebv ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_lstprint_str(t_list *lst)
|
|
{
|
|
while (lst != NULL)
|
|
{
|
|
ft_printf("%s\n", (char*)(lst->content));
|
|
lst = lst->next;
|
|
}
|
|
}
|