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