/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/03 16:13:07 by jhalford #+# #+# */ /* Updated: 2016/08/25 17:03:59 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putstr_fd(char const *s, int fd) { write(fd, s, ft_strlen(s)); } void ft_putstr(char const *s) { write(1, s, ft_strlen(s)); }