move here

This commit is contained in:
root
2025-10-12 15:20:44 +00:00
commit 5705f52a2e
6 changed files with 168 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lfirmin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/08 03:56:34 by lfirmin #+# #+# */
/* Updated: 2024/02/08 05:15:35 by lfirmin ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_putchar(char c)
{
write(1, &c, 1);
}