blob: d66ed47bca221ac26889a7b3b2739614e925d316 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef HELP_H
#define HELP_H
char *lush_get_help_text() {
return "\033[1;35m.____ _________.__ .__ .__ \n"
"| | __ __ ____ _____ _______ / _____/| |__ ____ | | | | \n"
"| | | | \\/ \\\\__ \\\\_ __ \\ \\_____ \\ | | \\_/ __ \\| | | | \n"
"| |___| | / | \\/ __ \\| | \\/ / \\| Y \\ ___/| |_| |__\n"
"|_______ \\____/|___| (____ /__| /_______ /|___| /\\___ >____/____/\n"
" \\/ \\/ \\/ \\/ \\/ \\/ \n\033[0m";
}
#endif // HELP_H
|