-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_decimal_integer.c
18 lines (16 loc) · 977 Bytes
/
ft_decimal_integer.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_decimal_integer.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cproesch <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/08/04 18:18:50 by cproesch #+# #+# */
/* Updated: 2021/08/04 18:18:53 by cproesch ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void ft_decimal_integer(int n, int *j)
{
ft_putnbr(n, j);
}