-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_print_tab.c
executable file
·25 lines (22 loc) · 1.08 KB
/
ft_print_tab.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
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_print_tab.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: brobicho <[email protected]> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/08/12 15:17:37 by brobicho #+# ## ## #+# */
/* Updated: 2018/08/12 15:18:50 by brobicho ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
void ft_print_tab(char **str)
{
int i;
i = 0;
if (!str)
return ;
while (str[i])
ft_putendl(str[i++]);
}