-
Notifications
You must be signed in to change notification settings - Fork 0
/
process_i.c
23 lines (20 loc) · 1.01 KB
/
process_i.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* process_i.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: igilbert <[email protected]. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/14 10:38:52 by igilbert #+# #+# */
/* Updated: 2024/11/14 11:16:20 by igilbert ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int process_i(va_list args)
{
long nb;
int len;
nb = va_arg(args, int);
len = ft_putnbr(nb);
return (len);
}