-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_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: vcodrean <vcodrean@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/19 16:33:55 by vcodrean #+# #+# */
/* Updated: 2023/01/19 11:26:08 by vcodrean ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_putchar(int c)
{
return (write (1, &c, 1));
}