aboutsummaryrefslogtreecommitdiff
path: root/src/ioutil_Utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ioutil_Utils.h')
-rw-r--r--src/ioutil_Utils.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ioutil_Utils.h b/src/ioutil_Utils.h
index c7e8b2e..519f6ee 100644
--- a/src/ioutil_Utils.h
+++ b/src/ioutil_Utils.h
@@ -19,20 +19,20 @@ extern "C"
/* set the slice center for 1D lines */
-int IOUtil_1DLines (cGH *GH,
+int IOUtil_1DLines (const cGH *GH,
int num_dims,
- int *const origin_index[],
- CCTK_REAL *const origin_phys[],
- int *slice_center[]);
+ int *const *const origin_index,
+ CCTK_REAL *const *const origin_phys,
+ int *const *const slice_center);
/* set the slice center for 2D planes */
-int IOUtil_2DPlanes (cGH *GH,
+int IOUtil_2DPlanes (const cGH *GH,
int num_dims,
- const int origin_index[],
- const CCTK_REAL origin_phys[],
- int slice_center[]);
+ const int *origin_index,
+ const CCTK_REAL *origin_phys,
+ int *slice_center);
-int IOUtil_CreateDirectory (cGH *GH,
+int IOUtil_CreateDirectory (const cGH *GH,
const char *dirname,
int multiple_io_procs,
int ioproc);