-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprintf_char.c
19 lines (17 loc) · 978 Bytes
/
printf_char.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* printf_char.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mheinke <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/24 19:01:16 by mheinke #+# #+# */
/* Updated: 2023/08/17 09:54:36 by mheinke ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int printf_char(int c)
{
ft_putchar_fd(c, 1);
return (1);
}