-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstr_fd.c
19 lines (17 loc) · 1007 Bytes
/
ft_putstr_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: twakrim <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/10/19 01:38:32 by twakrim #+# #+# */
/* Updated: 2018/10/19 02:15:34 by twakrim ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr_fd(char const *s, int fd)
{
if (fd != -1 && s)
write(fd, s, ft_strlen(s));
}