23 lines
1,005 B
C
23 lines
1,005 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* ft_putstr.c :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2016/10/28 10:45:38 by gtertysh #+# #+# */
|
||
|
/* Updated: 2016/10/28 11:09:43 by gtertysh ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
int ft_putchar(char c);
|
||
|
|
||
|
void ft_putstr(char *str)
|
||
|
{
|
||
|
while (*str != '\0')
|
||
|
{
|
||
|
ft_putchar(*str);
|
||
|
str++;
|
||
|
}
|
||
|
}
|