-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putnbr.c
30 lines (27 loc) · 1.09 KB
/
ft_putnbr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cprune <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/23 17:41:31 by cprune #+# #+# */
/* Updated: 2015/12/14 11:32:48 by cprune ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putnbr(int n)
{
unsigned int tmp;
if (n < 0 && (tmp = -n))
ft_putchar('-');
else
tmp = n;
if (tmp > 9)
{
ft_putnbr(tmp / 10);
ft_putnbr(tmp % 10);
}
else
ft_putchar(tmp + '0');
}