-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putui.c
18 lines (16 loc) · 976 Bytes
/
ft_putui.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putui.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lduplain <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/12/14 16:06:38 by lduplain #+# #+# */
/* Updated: 2020/12/14 16:08:10 by lduplain ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putui(unsigned int number)
{
ft_putui_fd(1, number);
}