-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_write_percent.c
19 lines (17 loc) · 992 Bytes
/
ft_write_percent.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_write_percent.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yichoi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/16 20:46:51 by yichoi #+# #+# */
/* Updated: 2021/12/21 15:39:36 by yichoi ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_write_percent(va_list ap)
{
(void)ap;
return (write(1, "%", 1));
}