-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstr2.c
22 lines (19 loc) · 1000 Bytes
/
ft_putstr2.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* putstr2.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ewilliam <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/14 16:18:58 by ewilliam #+# #+# */
/* Updated: 2016/12/21 09:46:40 by ewilliam ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr2(char **s)
{
int y;
y = 0;
while (s && s[y])
ft_putendl(s[y++]);
}