This repository has been archived on 2026-03-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
netbenixCMD/etc/logo.c
2020-07-24 16:11:27 +02:00

15 lines
No EOL
734 B
C

#include <stdio.h>
#include "logo.h"
char logo_row1[59] = " _ _ _ ____ __ __ ____ ";
char logo_row2[59] = " _ __ ___| |_| |__ ___ _ __ (_)_ __/ ___| \\/ | _ \\ ";
char logo_row3[59] = "| '_ \\ / _ \\ __| '_ \\ / _ \\ '_ \\| \\ \\/ / | | |\\/| | | | |";
char logo_row4[59] = "| | | | __/ |_| |_) | __/ | | | |> <| |___| | | | |_| |";
char logo_row5[59] = "|_| |_|\\___|\\__|_.__/ \\___|_| |_|_/_/\\_\\\\____|_| |_|____/ ";
void showLogo(){
printf("\033[0;34m%s\033[0m\n", logo_row1);
printf("\033[0;34m%s\033[0m\n", logo_row2);
printf("\033[0;34m%s\033[0m\n", logo_row3);
printf("\033[0;34m%s\033[0m\n", logo_row4);
printf("\033[0;34m%s\033[0m\n\n", logo_row5);
}