summaryrefslogtreecommitdiff
path: root/src/main/MainUtils.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-10-05 00:07:00 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-10-05 00:07:00 +0000
commitb78c70b7bf73f047d78cd9e066c513b7c003106d (patch)
treef2dda60e99b8f981b6146da8133554e06be2eb22 /src/main/MainUtils.c
parent90f754b042785e7acaaad5a4d40f12aa50cb26a9 (diff)
grdoc, style-guidelines, ...
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1854 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/MainUtils.c')
-rw-r--r--src/main/MainUtils.c48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/main/MainUtils.c b/src/main/MainUtils.c
index 158159ec..ef1d28a3 100644
--- a/src/main/MainUtils.c
+++ b/src/main/MainUtils.c
@@ -19,6 +19,28 @@ static char *rcsid = "$Header$";
CCTK_FILEVERSION(main_MainUtils_c)
+/********************************************************************
+ ********************* Local Data Types ***********************
+ ********************************************************************/
+
+/********************************************************************
+ ********************* Local Routine Prototypes *********************
+ ********************************************************************/
+
+/********************************************************************
+ ********************* Other Routine Prototypes *********************
+ ********************************************************************/
+
+/********************************************************************
+ ********************* Local Data *****************************
+ ********************************************************************/
+
+/* the iteration counter used in the evolution loop */
+static int iteration = 0;
+
+/********************************************************************
+ ********************* External Routines **********************
+ ********************************************************************/
/*@@
@routine CCTK_RunTitle
@@ -29,7 +51,29 @@ CCTK_FILEVERSION(main_MainUtils_c)
@enddesc
@calls
@calledby
+ @history
+
+ @endhistory
+ @var len
+ @vdesc The length of the title buffer
+ @vtype int
+ @vio in
+ @vcomment
+
+ @endvar
+ @var title
+ @vdesc The title buffer
+ @vtype char *
+ @vio out
+ @vcomment
+
+ @endvar
+ @returntype int
+ @returndesc
+ The length of the title
+ - if title is NULL
+ @endreturndesc
@@*/
int CCTK_RunTitle(int len, char *title)
{
@@ -62,3 +106,7 @@ int CCTK_RunTitle(int len, char *title)
return retval;
}
+/********************************************************************
+ ********************* Local Routines *************************
+ ********************************************************************/
+