-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putendl.c
19 lines (17 loc) · 989 Bytes
/
ft_putendl.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendl.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: eleclet <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/26 19:36:59 by eleclet #+# #+# */
/* Updated: 2015/12/08 11:22:39 by eleclet ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putendl(const char *s)
{
ft_putstr((char *)s);
ft_putchar('\n');
}