-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printchar.c
18 lines (16 loc) · 971 Bytes
/
ft_printchar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: daxferab <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/20 17:03:22 by daxferab #+# #+# */
/* Updated: 2024/03/22 19:11:39 by daxferab ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_printchar(int c)
{
return (write(1, &c, 1));
}