-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint_char.c
18 lines (16 loc) · 970 Bytes
/
print_char.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* :::::::: */
/* print_char.c :+: :+: */
/* +:+ */
/* By: dreijans <[email protected]> +#+ */
/* +#+ */
/* Created: 2022/11/18 18:08:14 by dreijans #+# #+# */
/* Updated: 2022/12/05 12:40:05 by dreijans ######## odam.nl */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int print_char(char c)
{
return (write(1, &c, 1));
}