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