aboutsummaryrefslogtreecommitdiff
path: root/libft/src/io/ft_putendl.c
blob: 880977ee8f6bb965422bcb693c2e03eb9d5dae58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_putendl.c                                       :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2019/10/07 10:42:54 by cacharle          #+#    #+#             */
/*   Updated: 2019/11/20 04:00:32 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "libft.h"

void	ft_putendl(char *s)
{
	ft_putendl_fd(s, STDOUT_FILENO);
}