/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* putendl_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maiboyer +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/08 04:42:45 by maiboyer #+# #+# */ /* Updated: 2023/11/10 16:23:27 by maiboyer ### ########.fr */ /* */ /* ************************************************************************** */ #include "me/fs/putstr_fd.h" #include "me/fs/write.h" #include "me/str/str.h" void me_putendl_fd(t_str str, int file) { if (str == NULL) return ; me_write(file, (t_u8 *)str, str_len(str)); me_write(file, (t_u8 *)"\n", 1); }