-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_putchar.c
18 lines (16 loc) · 970 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: phelebra <xhelp00@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/08 16:05:16 by phelebra #+# #+# */
/* Updated: 2023/02/08 16:05:33 by phelebra ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_putchar(char c)
{
return (write(1, &c, 1));
}