-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_print_char.c
More file actions
18 lines (16 loc) · 984 Bytes
/
ft_print_char.c
File metadata and controls
18 lines (16 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_char.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bsousa-d <bsousa-d@student.42porto.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/08/03 14:40:18 by bsousa-d #+# #+# */
/* Updated: 2023/08/03 14:42:07 by bsousa-d ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/ft_printf.h"
int ft_print_char(int c)
{
return (write(1, &c, 1));
}