Compare commits
2 Commits
dec94a9a15
...
36da01d5a9
Author | SHA1 | Date |
---|---|---|
|
36da01d5a9 | |
|
707a2daad6 |
|
@ -0,0 +1,25 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_print_alphabet.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/03/15 21:50:37 by tischmid #+# #+# */
|
||||
/* Updated: 2023/03/15 22:09:02 by tischmid ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
void ft_print_alphabet(void)
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
i = 97;
|
||||
while (i < 123)
|
||||
{
|
||||
write(1, &i, 1);
|
||||
i++;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue