#include void ft_print_alphabet(void) { char c; { c = 'z'; while (c >= 'a') { write(1, &c, 1); c--; } } }