/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/18 18:35:32 by adjoly #+# #+# */ /* Updated: 2024/03/16 21:45:41 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #include "../libft.h" void ft_putstr(char *s) { write(1, s, ft_strlen(s)); }