19 lines
993 B
C
19 lines
993 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_print_alphabet.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: lclerel- <lclerel-@learner.42.tech> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/03/04 09:53:03 by lclerel- #+# #+# */
|
|
/* Updated: 2026/03/04 14:06:37 by lclerel- ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <unistd.h>
|
|
|
|
void ft_print_alphabet(void)
|
|
{
|
|
write(1, "abcdefghijklmnopqrstuvwxyz\n", 26);
|
|
}
|