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
+25
View File
@@ -0,0 +1,25 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_reverse_alphabet.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lfirmin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/08 18:26:45 by lfirmin #+# #+# */
/* Updated: 2024/02/08 19:29:05 by lfirmin ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_print_reverse_alphabet(void)
{
char z;
z = 'z';
while (z >= 'a')
{
write(1, &z, 1);
z--;
}
}