Archived
1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
so_long/libft/ft_putstr_fd.c

19 lines
980 B
C
Raw Normal View History

2024-01-13 19:13:17 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/31 11:45:55 by adjoly #+# #+# */
2024-01-19 15:41:43 +01:00
/* Updated: 2024/01/17 11:26:44 by adjoly ### ########.fr */
2024-01-13 19:13:17 +01:00
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr_fd(char *s, int fd)
{
2024-01-19 15:41:43 +01:00
write(fd, s, ft_strlen(s));
2024-01-13 19:13:17 +01:00
}