-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putchar.c
18 lines (16 loc) · 959 Bytes
/
ft_putchar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maxpetit <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/10/17 22:07:09 by maxpetit #+# #+# */
/* Updated: 2015/11/01 23:35:51 by alahlou ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_putchar(char a)
{
write(1, &a, 1);
}