Files
libft/ft_putstr_fd.c
Angel Ortigosa Perez c87ab67280 Libft aortigos
2025-11-15 09:18:35 +01:00

26 lines
1018 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/22 19:17:32 by aortigos #+# #+# */
/* Updated: 2023/10/22 19:23:17 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr_fd(char *s, int fd)
{
int i;
i = 0;
while (s[i])
{
write(fd, &s[i], 1);
i++;
}
}