libft/ft_putstr_fd.c

20 lines
990 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tosuman <timo42@proton.me> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/06/09 14:26:11 by tosuman #+# #+# */
/* Updated: 2023/06/09 14:26:11 by tosuman ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr_fd(char *s, int fd)
{
while (*s)
ft_putchar_fd(*s++, fd);
}