blob: b90c07818f7164f360507da45171eb39909c0dd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_putstr_fd.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/10/13 08:48:25 by rbousset #+# ## ## #+# */
/* Updated: 2019/10/13 09:00:42 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
#include <unistd.h>
void
ft_putstr_fd(char *s, int fd)
{
write(fd, s, ft_strlen(s));
}
|