Corewar-Final/libft/libft/ft_lstprint_str.c
Jeremy FLEURY 748d10f4f3 push
2019-07-17 11:22:24 +02:00

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;
}
}