-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putendl_fd.c
23 lines (20 loc) · 1.04 KB
/
ft_putendl_fd.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_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cmyrtle <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/05/20 13:08:12 by cmyrtle #+# #+# */
/* Updated: 2020/05/25 09:51:20 by cmyrtle ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putendl_fd(char *s, int fd)
{
const char new_line = '\n';
if (!s || !fd)
exit(0);
write(fd, s, ft_strlen(s));
write(fd, &new_line, 1);
}