ft_putendl_fd.c 1.0 KB

12345678910111213141516171819202122
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* ft_putendl_fd.c :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: phella <phella@student.21-school.ru> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2021/10/16 13:54:10 by phella #+# #+# */
  9. /* Updated: 2021/10/16 14:27:39 by phella ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #include "libft.h"
  13. void ft_putendl_fd(char *s, int fd)
  14. {
  15. if (s == NULL)
  16. return ;
  17. ft_putstr_fd(s, fd);
  18. ft_putchar_fd('\n', fd);
  19. }