-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstr.c
executable file
·27 lines (24 loc) · 1.05 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: akalombo <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/03/12 11:54:24 by akalombo #+# #+# */
/* Updated: 2019/06/18 08:53:21 by akalombo ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr(char *str)
{
int counter;
if (!str)
return ;
counter = 0;
while (str[counter] != '\0')
{
ft_putchar(str[counter]);
counter++;
}
}