-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_putnbrbase.c
19 lines (17 loc) · 1 KB
/
ft_putnbrbase.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbrbase.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rlambert <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/01/26 16:56:14 by rlambert #+# #+# */
/* Updated: 2015/01/28 16:09:10 by rlambert ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
#include "libft.h"
void ft_putnbrbase(uintmax_t nbr, char *base)
{
ft_putnbrbase_fd(nbr, base, STDOUT_FILENO);
}