-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putchar.c
19 lines (17 loc) · 975 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: amait-ou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/17 10:06:13 by amait-ou #+# #+# */
/* Updated: 2023/01/24 00:08:07 by amait-ou ### ########.fr */
/* */
/* ************************************************************************** */
#include "./superlib.h"
int ft_putchar(char c)
{
write(1, &c, 1);
return (1);
}