-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putchar.c
18 lines (16 loc) · 971 Bytes
/
ft_putchar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mel-mouh <mel-mouh@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/18 23:10:38 by mel-mouh #+# #+# */
/* Updated: 2024/11/20 12:21:49 by mel-mouh ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_putchar(char c)
{
return (write (1, &c, 1));
}