-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstprint_str.c
22 lines (20 loc) · 1 KB
/
ft_lstprint_str.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstprint_str.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ochouati <ochouati@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/03 21:04:04 by ochouati #+# #+# */
/* Updated: 2024/02/03 21:04:07 by ochouati ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstprint_str(t_list *head)
{
while (head)
{
ft_printf("%s\n", head->content);
head = head->next;
}
}