-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putlong.c
18 lines (16 loc) · 962 Bytes
/
ft_putlong.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putlong.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: malexand <malexand@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/01/15 15:33:07 by skyzie #+# #+# */
/* Updated: 2017/02/16 17:34:26 by malexand ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putlong(long n)
{
ft_putlong_fd(n, 1);
}