#include /*void ft_print_alphabet(void)*/ /*void ft_putchar(char c)*/ main() { { char c; for (c='z'; c>='a'; c--) write(1, &c, 1); } return 0; }