/* ************************************************************************** */1/* */2/* ::: :::::::: */3/* ft_putstr_fd.c :+: :+: :+: */4/* +:+ +:+ +:+ */5/* By: yabtaour <[email protected]> +#+ +:+ +#+ */6/* +#+#+#+#+#+ +#+ */7/* Created: 2022/07/26 18:17:39 by yabtaour #+# #+# */8/* Updated: 2022/07/26 18:17:40 by yabtaour ### ########.fr */9/* */10/* ************************************************************************** */1112#include "../minishell.h"1314void ft_putstr_fd(char *s, int fd)15{16int idx;1718idx = 0;19if (s)20{21while (s[idx] != '\0')22{23write(fd, &s[idx], 1);24idx++;25}26}27}282930