-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformat_n.c
19 lines (17 loc) · 1010 Bytes
/
format_n.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* format_n.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: alischyn <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/03/23 19:08:30 by alischyn #+# #+# */
/* Updated: 2017/03/23 19:12:06 by alischyn ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void format_n(t_fmt *fmt, va_list ap)
{
(void)fmt;
*(va_arg(ap, int *)) = g_res.length;
}