-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putchar.c
19 lines (17 loc) · 1001 Bytes
/
ft_putchar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yochered <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/10/24 12:28:23 by yochered #+# #+# */
/* Updated: 2018/10/24 12:28:26 by yochered ### ########.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
#include <unistd.h>
void ft_putchar(char c)
{
ft_putchar_fd(c, 1);
}