1
0
libft_new/print/ft_putstr.c

20 lines
972 B
C
Raw Normal View History

2023-11-19 17:15:16 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
2024-02-04 15:11:02 +01:00
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
2023-11-19 17:15:16 +01:00
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/18 18:35:32 by adjoly #+# #+# */
2024-02-04 15:11:02 +01:00
/* Updated: 2024/02/04 15:07:14 by adjoly ### ########.fr */
2023-11-19 17:15:16 +01:00
/* */
/* ************************************************************************** */
2024-02-04 15:11:02 +01:00
#include "../libft.h"
2023-11-19 17:15:16 +01:00
void ft_putstr(char *s)
{
2024-02-04 15:11:02 +01:00
write(1, s, ft_strlen(s));
2023-11-19 17:15:16 +01:00
}
2024-02-04 15:11:02 +01:00