summaryrefslogtreecommitdiff
path: root/src/main/Startup.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-18 10:29:18 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-18 10:29:18 +0000
commitffe630de0d24d61de4a7fb035d038d2795fb5917 (patch)
tree0cef8f1b3c5451efb5d7e5445d15b5542867ae35 /src/main/Startup.c
parentc641478ad08daf6924db06d4a41eea76b743410f (diff)
Cactuses own Banner ... at the moment it has no special treatment,
but perhaps it should always go first. git-svn-id: http://svn.cactuscode.org/flesh/trunk@722 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/Startup.c')
-rw-r--r--src/main/Startup.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main/Startup.c b/src/main/Startup.c
new file mode 100644
index 00000000..01f0f292
--- /dev/null
+++ b/src/main/Startup.c
@@ -0,0 +1,25 @@
+
+int Cactus_Startup(void)
+{
+
+ const char *string;
+
+ string = "
+ \\ |/
+ /--\\
+ \\| .|- \\ | | | /
+ | . |
+ | . |- - Cactus 4.0 -
+ -| |
+ | / | / | | | \\
+ \\| |/
+ | . | Thorny problems in Numerical Relativity and Beyond
+ | |-
+ \\ / Credits: Tom Goodale, Joan Masso, Paul Walker and Gabrielle Allen
+ -------- Including contributions from many worldwide collaborators
+ \\______/
+ ";
+
+ CCTK_RegisterBanner(string);
+
+}