-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_putendl.c
More file actions
29 lines (26 loc) · 1.11 KB
/
ft_putendl.c
File metadata and controls
29 lines (26 loc) · 1.11 KB
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
26
27
28
29
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_putendl.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: thperchi <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/07/11 03:45:28 by thperchi #+# ## ## #+# */
/* Updated: 2018/10/10 19:02:37 by thperchi ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
void ft_putendl(char const *str)
{
int x;
x = 0;
if (!str)
return ;
while (str[x])
{
ft_putchar(str[x]);
x++;
}
ft_putchar('\n');
}