-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_pspp_fd.c
19 lines (17 loc) · 998 Bytes
/
ft_pspp_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_pspp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vpopovyc <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/01/29 19:02:17 by vpopovyc #+# #+# */
/* Updated: 2017/01/29 19:08:34 by vpopovyc ### ########.fr */
/* */
/* ************************************************************************** */
#include "includes/libft.h"
void pspp(char **s, int fd)
{
while (*s && s)
ft_putstr_fd(*(s++), fd);
}