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