summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsbrandt <sbrandt@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-05-06 20:28:16 +0000
committersbrandt <sbrandt@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-05-06 20:28:16 +0000
commit4fbccc70f25447b28a2ab713084ccd3c632f73a4 (patch)
tree605188f5372be0e4b04d5e2306d137ea09c2861e
parentf2ca497038efc19e24d32554b589419cf3a687f9 (diff)
Undoing an accidental commit.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@5003 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--src/main/Parameters.c23
1 files changed, 7 insertions, 16 deletions
diff --git a/src/main/Parameters.c b/src/main/Parameters.c
index 01017d38..09b3c8b8 100644
--- a/src/main/Parameters.c
+++ b/src/main/Parameters.c
@@ -868,15 +868,6 @@ char *CCTK_ParameterValString (const char *param_name, const char *thorn)
return (retval);
}
-const int slen(const char *s) {
- int n = 0;
- while(*s != '\0') {
- s++;
- n++;
- }
- return n;
-}
-
/*@@
@routine CCTK_PARAMETERVALSTRING
@date Thu Jan 21 2000
@@ -919,7 +910,7 @@ void CCTK_FCALL CCTK_FNAME (CCTK_ParameterValString)
c_string = CCTK_ParameterValString (param, thorn);
if (c_string)
{
- *nchars = c_strlen = slen (c_string);
+ *nchars = c_strlen = strlen (c_string);
if (c_strlen > (size_t) cctk_strlen3)
{
CCTK_VWarn (1, __LINE__, __FILE__, "Cactus",
@@ -1090,8 +1081,8 @@ int CCTK_ParameterWalk (int first,
prefix = CCTK_ThornImplementation (prefix);
}
- *pfullname = malloc (slen (prefix) +
- slen (startpoint->props->name) + 3);
+ *pfullname = malloc (strlen (prefix) +
+ strlen (startpoint->props->name) + 3);
if(*pfullname)
{
sprintf (*pfullname, "%s::%s",
@@ -2308,7 +2299,7 @@ static int ParameterSetReal (t_param *param, const char *value)
* to do the actual conversion) only groks [eE].
*/
temp = strdup (value);
- for (unsigned int p = 0; p < slen (temp); p++)
+ for (unsigned int p = 0; p < strlen (temp); p++)
{
if (temp[p] == 'E' || temp[p] == 'd' || temp[p] == 'D')
{
@@ -2499,7 +2490,7 @@ static void GetBaseName(const char *name, char **basename, int *array_index)
}
else
{
- baselen = slen(name);
+ baselen = strlen(name);
*array_index = -1;
}
@@ -2542,7 +2533,7 @@ static char *ArrayParamName(const char *basename,int array_index)
char *retval;
/* Assume the string representation of an integer is no greater than 40 chars */
- retval = (char *)malloc(slen(basename)+2+40+1);
+ retval = (char *)malloc(strlen(basename)+2+40+1);
if(retval)
{
@@ -2751,7 +2742,7 @@ static int SetVarEvaluator(int nvars, const char * const *vars, uExpressionValue
* to do the actual conversion) only groks [eE].
*/
temp = strdup (vars[i]);
- for (unsigned int p = 0; p < slen (temp); p++)
+ for (unsigned int p = 0; p < strlen (temp); p++)
{
if (temp[p] == 'E' || temp[p] == 'd' || temp[p] == 'D')
{