/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_alphabet.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jayang <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/03 09:03:16 by jayang #+# #+# */
/* Updated: 2022/02/03 09:13:53 by jayang ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_print_alphabet(void)
{
char c;
c = 97;
while (c <= 122)
{
write(1, &c, 1);
c++;
}
}