28 lines
1.0 KiB
C
28 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putstr_fd.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tchivert <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2019/04/06 18:57:27 by tchivert #+# #+# */
|
|
/* Updated: 2019/09/04 05:13:31 by tchivert ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_putstr_fd(char const *s, int fd)
|
|
{
|
|
int i;
|
|
|
|
i = 0;
|
|
if (!s)
|
|
return ;
|
|
while (s[i])
|
|
{
|
|
ft_putchar_fd(s[i], fd);
|
|
i++;
|
|
}
|
|
}
|