-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putendsp.c
19 lines (17 loc) · 982 Bytes
/
ft_putendsp.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendsp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lbopp <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/17 12:11:33 by lbopp #+# #+# */
/* Updated: 2016/12/17 12:14:43 by lbopp ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putendsp(char const *s)
{
ft_putstr(s);
write(1, " ", 1);
}