/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* 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" int ft_putstr_fd(char const *s, int fd) { return (write(fd, s, ft_strlen(s))); } int ft_putstr(char const *s) { return (write(1, s, ft_strlen(s))); }