aboutsummaryrefslogtreecommitdiffstats
path: root/libft/src/ft_putendl.c
blob: e2ab5183ae07d850cfe7adc6dc5c70ad918680ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/*                                                          LE - /            */
/*                                                              /             */
/*   ft_putendl.c                                     .::    .:/ .      .::   */
/*                                                 +:+:+   +:    +:  +:+:+    */
/*   By: rbousset <marvin@le-101.fr>                +:+   +:    +:    +:+     */
/*                                                 #+#   #+    #+    #+#      */
/*   Created: 2019/10/15 05:19:52 by rbousset     #+#   ##    ##    #+#       */
/*   Updated: 2019/10/15 05:19:53 by rbousset    ###    #+. /#+    ###.fr     */
/*                                                         /                  */
/*                                                        /                   */
/* ************************************************************************** */

#include <libft.h>
#include <unistd.h>

int
	ft_putendl(const char *s)
{
	return (write(1, s, ft_strlen(s)) + ft_putchar('\n'));
}