c_piscine__offshore_mains/c00/ex01.c

31 lines
1.1 KiB
C
Raw Normal View History

2023-11-21 19:10:07 +00:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* c00_ex01.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: achubuko <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/18 20:31:16 by achubuko #+# #+# */
2023-11-22 21:34:57 +00:00
/* Updated: 2023/11/23 01:08:00 by achubuko ### ########.fr */
2023-11-21 19:10:07 +00:00
/* */
/* ************************************************************************** */
2023-11-22 21:34:57 +00:00
#include <unistd.h>
2023-11-21 19:10:07 +00:00
void ft_print_alphabet(void);
int main(void)
{
2023-11-22 21:34:57 +00:00
write(1, "abcdefghijklmnopqrstuvwxyz%\n", 28);
2023-11-21 19:10:07 +00:00
ft_print_alphabet();
2023-11-22 21:34:57 +00:00
write(1,"%\n", 2);
2023-11-21 19:10:07 +00:00
return 0;
}
void setUp(void)
{
}
void tearDown(void)
{
}