From 3aa1098b29003b648d1f3cb954989b2440d01f43 Mon Sep 17 00:00:00 2001 From: Quinten Mennen Date: Wed, 5 Feb 2025 19:48:20 +0100 Subject: [PATCH] refactor: upate logo --- src/lexer/lexer_read_word.c | 2 +- src/utils/print_banner.c | 15 +++++---------- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/src/lexer/lexer_read_word.c b/src/lexer/lexer_read_word.c index c9a957f..ac2e90b 100644 --- a/src/lexer/lexer_read_word.c +++ b/src/lexer/lexer_read_word.c @@ -6,7 +6,7 @@ /* By: qmennen +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/05 19:03:47 by qmennen #+# #+# */ -/* Updated: 2025/02/05 19:26:05 by qmennen ### ########.fr */ +/* Updated: 2025/02/05 19:28:17 by qmennen ### ########.fr */ /* */ /* ************************************************************************** */ diff --git a/src/utils/print_banner.c b/src/utils/print_banner.c index b2b155f..a42b55e 100644 --- a/src/utils/print_banner.c +++ b/src/utils/print_banner.c @@ -14,14 +14,9 @@ void print_banner(void) { - ft_printf("%s\n", BOLD RED "__ ___________________________" - "_____________________________________ __" GREEN); - ft_printf("%s\n", RED "__" GREEN " _______ _____ __ _ __" - "___ _______ _ _ _______ " RED "__"); - ft_printf("%s\n", RED "__" GREEN " | | | | | \\ | " - " | |______ |_____| |______ | | "RED "__"); - ft_printf("%s\n", RED "__" GREEN " | | | __|__ | \\_| _" - "_|__ ______| | | |______ |_____ |_____ "RED "__"); - ft_printf("%s\n", RED "__ ________________________________" - "________________________________ __\n" RESET); + printf("%s\n", GREEN"• ▌ ▄ ·. ▪ ▐ ▄ ▪ .▄▄ · ▄ .▄▄▄▄ .▄▄▌ ▄▄▌ "RESET); + printf("%s\n", GREEN"·██ ▐███▪██ •█▌▐███ ▐█ ▀. ██▪▐█▀▄.▀·██• ██• "RESET); + printf("%s\n", GREEN"▐█ ▌▐▌▐█·▐█·▐█▐▐▌▐█·▄▀▀▀█▄██▀▐█▐▀▀▪▄██▪ ██▪ "RESET); + printf("%s\n", GREEN"██ ██▌▐█▌▐█▌██▐█▌▐█▌▐█▄▪▐███▌▐▀▐█▄▄▌▐█▌▐▌▐█▌▐▌"RESET); + printf("%s\n", GREEN"▀▀ █▪▀▀▀▀▀▀▀▀ █▪▀▀▀ ▀▀▀▀ ▀▀▀ · ▀▀▀ .▀▀▀ .▀▀▀ "RESET); }