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