-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstr_fd.c
executable file
·21 lines (19 loc) · 1 KB
/
ft_putstr_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ioleksiu <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/08 17:23:29 by ioleksiu #+# #+# */
/* Updated: 2016/12/08 17:30:37 by ioleksiu ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <unistd.h>
void ft_putstr_fd(char const *s, int fd)
{
if (s)
while (*s)
ft_putchar_fd(*s++, fd);
}