-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_puttab.c
31 lines (28 loc) · 1.04 KB
/
ft_puttab.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
27
28
29
30
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_puttab.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akerkeb <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/01/21 23:14:19 by akerkeb #+# #+# */
/* Updated: 2016/01/21 23:14:21 by akerkeb ### ########.fr */
/* */
/* ************************************************************************** */
#include "fillit.h"
void ft_puttab(char **tab)
{
int x;
int y;
y = 0;
while (tab[y])
{
x = 0;
while (tab[y][x])
{
ft_putchar(tab[y][x]);
x++;
}
y++;
}
}