aboutsummaryrefslogtreecommitdiff
path: root/c00/ex01
diff options
context:
space:
mode:
Diffstat (limited to 'c00/ex01')
-rw-r--r--c00/ex01/ft_print_alphabet.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/c00/ex01/ft_print_alphabet.c b/c00/ex01/ft_print_alphabet.c
index f75442d..9bbf599 100644
--- a/c00/ex01/ft_print_alphabet.c
+++ b/c00/ex01/ft_print_alphabet.c
@@ -6,14 +6,12 @@
/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/02 22:18:43 by cacharle #+# #+# */
-/* Updated: 2019/07/02 22:33:52 by cacharle ### ########.fr */
+/* Updated: 2019/07/03 14:27:54 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
-void ft_print_alphabet(void);
-
void ft_print_alphabet(void)
{
char letter;
@@ -25,9 +23,3 @@ void ft_print_alphabet(void)
letter++;
}
}
-
-int main(void)
-{
- ft_print_alphabet();
- return (0);
-}