-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstr.c
27 lines (24 loc) · 1.02 KB
/
ft_putstr.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
26
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nhennigh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/13 16:35:24 by nhennigh #+# #+# */
/* Updated: 2019/02/13 20:34:43 by nhennigh ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr(char const *s)
{
char *str;
int i;
str = (char *)s;
i = 0;
while (str[i])
{
write(1, &str[i], 1);
i++;
}
}