-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printstrs.c
26 lines (23 loc) · 1.01 KB
/
ft_printstrs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printstrs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jecarol <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/14 15:49:43 by jecarol #+# #+# */
/* Updated: 2017/01/18 00:38:28 by jecarol ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_printstrs(char **str)
{
int i;
i = 0;
while (str[i])
{
ft_putstr(str[i]);
ft_putchar('\n');
i++;
}
}