aboutsummaryrefslogtreecommitdiff
path: root/libft/src/io/ft_putstr.c
blob: 14b01a35a61b1d891c2cda40ae60bebe79b961f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_putstr.c                                        :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2019/10/07 09:52:12 by cacharle          #+#    #+#             */
/*   Updated: 2019/11/20 03:48:48 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "libft.h"

void	ft_putstr(char const *s)
{
	ft_putstr_fd((char*)s, STDOUT_FILENO);
}