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