-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstr_fd.c
executable file
·25 lines (23 loc) · 1 KB
/
ft_putstr_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
24
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ichubare <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/25 17:13:10 by ichubare #+# #+# */
/* Updated: 2017/05/08 13:51:14 by ioleksiu ### ########.fr */
/* */
/* ************************************************************************** */
#include "filler.h"
void ft_putstr_fd(char const *s, int fd)
{
if (s)
{
while (*s)
{
ft_putchar_fd(*s, fd);
s++;
}
}
}