libft/ft_putstr.c

19 lines
975 B
C
Raw Normal View History

2020-11-20 12:31:29 +00:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gbrochar <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/27 18:23:12 by gbrochar #+# #+# */
2024-10-15 14:17:25 +00:00
/* Updated: 2024/10/15 16:16:42 by gbrochar ### ########.fr */
2020-11-20 12:31:29 +00:00
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr(char const *s)
{
2024-10-15 14:17:25 +00:00
write(1, s, ft_strlen(s));
2020-11-20 12:31:29 +00:00
}