aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_putstr_fd.c
blob: 663af0decbe7ae03fc68883d62bf81fbbb4ec9e1 (plain)
1
2
3
4
5
6
7
8
#include "libft.h"
#include <unistd.h>

void
ft_putstr_fd (char *s, int fd)
{
  write (fd, s, ft_strlen (s));
}