blob: 26dc80be6a27049af1bb7bac23e2e4e18bb193fc (
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'));
}
|