1
0
libft_new/print/ft_putstr.c
2024-03-16 21:48:58 +01:00

19 lines
971 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/18 18:35:32 by adjoly #+# #+# */
/* Updated: 2024/03/16 21:45:41 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include "../libft.h"
void ft_putstr(char *s)
{
write(1, s, ft_strlen(s));
}