aboutsummaryrefslogtreecommitdiff
path: root/ft_putchar.c
blob: 2838f0a6c89c20383f66c9d954d3349a57c14c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_putchar.c                                       :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2019/10/07 09:53:31 by cacharle          #+#    #+#             */
/*   Updated: 2019/11/20 03:49:14 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "libft.h"

void	ft_putchar(char c)
{
	write(STDOUT_FILENO, &c, 1);
}