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

View File

@@ -0,0 +1,25 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_reverse_alphabet.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: Syxpi <admin@syxpi.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/02/28 11:53:50 by Syxpi #+# #+# */
/* Updated: 2026/02/28 12:11:28 by Syxpi ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_print_reverse_alphabet(void)
{
char letter;
letter = 'z';
while (letter >= 'a')
{
write(1, &letter, 1);
}
write(1, "\n", 1);
}