-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_output.c
19 lines (17 loc) · 981 Bytes
/
ft_output.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_output.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: albarret <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/05/31 07:00:01 by albarret #+# #+# */
/* Updated: 2019/05/31 07:01:29 by albarret ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include "ft_printf.h"
void ft_putchar(char c)
{
write(1, &c, 1);
}