-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_puttabstr.c
More file actions
executable file
·19 lines (17 loc) · 987 Bytes
/
ft_puttabstr.c
File metadata and controls
executable file
·19 lines (17 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_puttabstr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: luperez <luperez@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/16 01:33:06 by luperez #+# #+# */
/* Updated: 2014/11/16 01:40:14 by luperez ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_puttabstr(char **tab)
{
while (*(tab + 1))
ft_putstr(*tab++);
}