25 lines
1 KiB
C
25 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_print_reverse_alphabet.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/08/02 20:54:50 by jhalford #+# #+# */
|
|
/* Updated: 2016/08/03 19:38:09 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
void ft_putchar(char c);
|
|
|
|
void ft_print_reverse_alphabet(void)
|
|
{
|
|
char c;
|
|
|
|
c = 'z';
|
|
while (c >= 'a')
|
|
{
|
|
ft_putchar(c);
|
|
c--;
|
|
}
|
|
}
|