-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_print_c.c
More file actions
19 lines (17 loc) · 975 Bytes
/
ft_print_c.c
File metadata and controls
19 lines (17 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_c.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bhielsch <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/20 10:23:14 by bhielsch #+# #+# */
/* Updated: 2022/10/20 10:23:36 by bhielsch ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_print_c(char c)
{
write (1, &c, 1);
return (1);
}