29 lines
1.0 KiB
C
29 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putstr_fd.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mdenys <mdenys@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2020/11/04 13:45:44 by mdenys #+# #+# */
|
|
/* Updated: 2020/11/04 13:48:29 by mdenys ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_putstr_fd(char *s, int fd)
|
|
{
|
|
int i;
|
|
|
|
i = 0;
|
|
if (s)
|
|
{
|
|
while (s[i])
|
|
{
|
|
ft_putchar_fd(s[i], fd);
|
|
i++;
|
|
}
|
|
}
|
|
}
|