-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_putchar.c
19 lines (17 loc) · 969 Bytes
/
ft_putchar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: marsoare <marsoare@student.42porto.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/28 14:16:25 by marsoare #+# #+# */
/* Updated: 2024/05/10 20:16:13 by marsoare ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_putchar(int c)
{
write(1, &c, 1);
return (1);
}