-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_putwchar.c
20 lines (18 loc) · 1022 Bytes
/
ft_putwchar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putwchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rlambert <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/01/26 14:46:05 by rlambert #+# #+# */
/* Updated: 2015/01/26 15:07:20 by rlambert ### ########.fr */
/* */
/* ************************************************************************** */
#include <wchar.h>
#include <unistd.h>
#include "libft.h"
void ft_putwchar(wchar_t chr)
{
ft_putwchar_fd(chr, STDOUT_FILENO);
}