-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstr.c
executable file
·18 lines (17 loc) · 981 Bytes
/
ft_putstr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ybolivar <ybolivar@student.42madrid.c +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/21 16:40:39 by ybolivar #+# #+# */
/* Updated: 2022/02/21 17:03:13 by ybolivar ### ########.fr */
/* */
/* ************************************************************************** */
#include"libft.h"
void ft_putstr(char *str)
{
while (*str)
write (1, &(*str++), 1);
}