-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putdbl.c
18 lines (16 loc) · 962 Bytes
/
ft_putdbl.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putdbl.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: malexand <malexand@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/03/13 14:39:31 by aguemy #+# #+# */
/* Updated: 2017/09/26 18:22:11 by malexand ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putdbl(double d)
{
ft_putdbl_fd(1, d);
}