diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-07-03 16:37:50 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-07-03 16:37:50 +0200 |
| commit | e65f1a0088a86af0426bc523f017631066cc9c42 (patch) | |
| tree | 38c30d4c5cc60e20b2752cff3b2927af9a16f51a /c00/ex01 | |
| parent | 4205989a932533f528c0fa8f76126a5b57606c0a (diff) | |
| download | piscine-e65f1a0088a86af0426bc523f017631066cc9c42.tar.gz piscine-e65f1a0088a86af0426bc523f017631066cc9c42.tar.bz2 piscine-e65f1a0088a86af0426bc523f017631066cc9c42.zip | |
c00
Diffstat (limited to 'c00/ex01')
| -rw-r--r-- | c00/ex01/ft_print_alphabet.c | 10 |
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); -} |
