-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putendch_fd.c
19 lines (17 loc) · 1008 Bytes
/
ft_putendch_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendch_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lbopp <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/01/12 12:30:05 by lbopp #+# #+# */
/* Updated: 2017/01/12 12:31:04 by lbopp ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putendch_fd(char const *s, char c, int fd)
{
ft_putstr_fd(s, fd);
write(fd, &c, 1);
}