42-archive/42-piscine-c/d02/ex00/ft_print_alphabet.c
2016-08-25 20:50:28 +02:00

25 lines
1,019 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_alphabet.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/02 20:50:06 by jhalford #+# #+# */
/* Updated: 2016/08/07 17:10:36 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
void ft_putchar(char c);
void ft_print_alphabet(void)
{
char c;
c = 'a';
while (c <= 'z')
{
ft_putchar(c);
c++;
}
}