Add files

This commit is contained in:
2026-02-28 12:27:14 +01:00
commit 31586db850
7 changed files with 94 additions and 0 deletions

18
ft_print_z/ft_print_z.c Normal file
View File

@@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_z.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: Syxpi <admin@syxpi.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/02/28 12:14:58 by Syxpi #+# #+# */
/* Updated: 2026/02/28 12:15:29 by Syxpi ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_print_z(void)
{
write(1, "z\n", 2);
}