21 lines
1,005 B
C
21 lines
1,005 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putstr.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/08/02 14:27:20 by jhalford #+# #+# */
|
|
/* Updated: 2016/08/09 10:57:00 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <unistd.h>
|
|
|
|
void ft_putchar(char c);
|
|
|
|
void ft_putstr(char *str)
|
|
{
|
|
while (*str)
|
|
ft_putchar(*str++);
|
|
}
|