20 lines
988 B
C
20 lines
988 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putstr.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/12/04 14:55:00 by gtertysh #+# #+# */
|
|
/* Updated: 2016/12/04 15:25:12 by gtertysh ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_putstr(char const *s)
|
|
{
|
|
if (s)
|
|
while (*s)
|
|
write(1, s++, 1);
|
|
}
|