/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 12:09:22 by scebula #+# #+# */ /* Updated: 2015/11/26 12:10:09 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putstr(char const *s) { write(1, s, ft_strlen(s)); }