-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putstr.c
25 lines (22 loc) · 1 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: erli <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/08 14:01:29 by erli #+# #+# */
/* Updated: 2018/11/08 14:03:57 by erli ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_putstr(const char *str)
{
int i;
i = 0;
while (str[i] != '\0')
{
write(1, (str + i), 1);
i++;
}
}