-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstrtab.c
executable file
·24 lines (22 loc) · 1.03 KB
/
ft_putstrtab.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstrtab.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/21 10:28:29 by akharrou #+# #+# */
/* Updated: 2019/03/04 13:17:20 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
#include "../Includes/stdio_42.h"
void ft_putstrtab(char **tab, char sep)
{
if (tab)
while (*tab)
{
ft_putstr(*tab);
ft_putchar(sep);
tab++;
}
}