aboutsummaryrefslogtreecommitdiff
path: root/ft_putstr_fd.c
blob: d7c2756074a3c33f79f7c5b9912dda96db127eb6 (plain)
1
2
3
4
5
6
7
#include <unistd.h>

void ft_putstr_fd(char const *s, int fd)
{
    while (*s)
        write(fd, s++, 1);
}