-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_format_c.c
19 lines (17 loc) · 998 Bytes
/
ft_format_c.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_c.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: roudouch <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/21 14:39:06 by roudouch #+# #+# */
/* Updated: 2021/11/21 15:23:14 by roudouch ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_c(va_list ptr, int fd)
{
ft_putchar(va_arg(ptr, int), fd);
return (1);
}