-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_putstr.c
More file actions
25 lines (22 loc) · 1019 Bytes
/
ft_putstr.c
File metadata and controls
25 lines (22 loc) · 1019 Bytes
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.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sgrindhe <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/07/16 04:12:32 by sgrindhe #+# #+# */
/* Updated: 2018/07/16 04:15:28 by sgrindhe ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr(const char *str)
{
size_t i;
i = 0;
while (str[i])
{
ft_putchar(str[i]);
i++;
}
}