20 lines
981 B
C
20 lines
981 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putstr.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: lflandri <lflandri@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/07/31 08:46:44 by nlauvray #+# #+# */
|
|
/* Updated: 2022/08/02 18:38:07 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "bsq.h"
|
|
|
|
void ft_putstr(char *str)
|
|
{
|
|
while (*str != 0)
|
|
write(1, str++, 1);
|
|
}
|