/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 12:11:51 by scebula #+# #+# */ /* Updated: 2015/11/26 13:27:36 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putstr_fd(char const *s, int fd) { write(fd, s, ft_strlen(s)); }