-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putendstr_fd.c
19 lines (17 loc) · 1023 Bytes
/
ft_putendstr_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lbopp <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/01/17 13:41:01 by lbopp #+# #+# */
/* Updated: 2017/01/17 13:41:49 by lbopp ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putendstr_fd(char const *s1, char const *s2, int fd)
{
ft_putstr_fd(s1, fd);
ft_putstr_fd(s2, fd);
}