summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_putstr_fd.c
blob: 068d9591c39a627027d2a88a63684fe4f32a858b (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>

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