forked from dase/CLAIMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
startup.h
31 lines (24 loc) · 869 Bytes
/
startup.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
* startup.h
*
* Created on: Jul 7, 2014
* Author: wangli
*/
#ifndef STARTUP_H_
#define STARTUP_H_
#include <stdio.h>
#include "Environment.h"
#include <unistd.h>
#include "Config.h"
void print_welcome(){
printf("\033[;31m");
printf(" ______ __ ___ __ .___ ___. _______.\n");
printf(" / || | / \\ | | | \\/ | / |\n");
printf(" | ,----'| | / ^ \\ | | | \\ / | | (----`\n");
printf(" | | | | / /_\\ \\ | | | |\\/| | \\ \\ \n");
printf(" | `----.| `----. / _____ \\ | | | | | | .----) | \n");
printf(" \\______||_______|/__/ \\__\\ |__| |__| |__| |_______/ \n");
printf("\033[0m\n");
printf(" -----------CLuster-Aware In-Memory Sql query engine----------\n\n");
}
#endif /* STARTUP_H_ */