summaryrefslogtreecommitdiff
path: root/src/include/cctk_ParameterFunctions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/cctk_ParameterFunctions.h')
-rw-r--r--src/include/cctk_ParameterFunctions.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/cctk_ParameterFunctions.h b/src/include/cctk_ParameterFunctions.h
index 4d54b57b..2ecbfbb0 100644
--- a/src/include/cctk_ParameterFunctions.h
+++ b/src/include/cctk_ParameterFunctions.h
@@ -98,25 +98,25 @@ extern "C" {
/* set the value of a parameter */
int CCTK_ParameterSet (
- const char *name, /* The name of the parameter */
- const char *thorn, /* The originating thorn */
- const char *value); /* The value of the parameter */
+ const char *name, /* The name of the parameter */
+ const char *thorn, /* The originating thorn */
+ const char *value); /* The value of the parameter */
/* get the data pointer to and type of a parameter's value */
void *ParameterGet (
- const char *name, /* The name of the parameter */
+ const char *name, /* The name of the parameter */
const char *thorn, /* The originating thorn */
int *type); /* Holds type of parameter */
/* get the string representation of a parameter's value
(string should be freed afterwards) */
char *ParameterValString (const char *name, /* The name of the parameter */
- const char *thorn); /* The originating thorn */
+ const char *thorn); /* The originating thorn */
/* walk through list of parameters */
const char *CCTK_ParameterWalk(
- int first, /* Get first parameter or not */
- const char *origin); /* The origin of this walk */
+ int first, /* Get first parameter or not */
+ const char *origin); /* The origin of this walk */
/* get list of parameter names for given thorn */
int CCTK_ParameterList (const char* thorn, char ***paramlist, int *n_param);