25 lines
1015 B
C
25 lines
1015 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* ft_print_alphabet.c :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: adjoly <marvin@42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2023/07/12 11:08:23 by adjoly #+# #+# */
|
||
|
/* Updated: 2023/07/12 20:50:30 by adjoly ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
#include <unistd.h>
|
||
|
|
||
|
void ft_print_alphabet(void)
|
||
|
{
|
||
|
char i;
|
||
|
|
||
|
i = 'a';
|
||
|
while (i <= 'z')
|
||
|
{
|
||
|
write(1, &i, 1);
|
||
|
i++;
|
||
|
}
|
||
|
}
|