-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf_c.c
19 lines (17 loc) · 978 Bytes
/
ft_printf_c.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* printf_c.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mcoskune <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/29 15:59:24 by mcoskune #+# #+# */
/* Updated: 2024/04/29 16:09:35 by mcoskune ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_printf_c(int c)
{
ft_putchar_fd(c, 1);
return (1);
}