Skip to content
Snippets Groups Projects
Commit 3bb4a798 authored by Daniel Pfeifer's avatar Daniel Pfeifer
Browse files

TestDriver: use for loop

parent 60b68304
No related branches found
No related tags found
No related merge requests found
......@@ -47,10 +47,8 @@ static char* lowercase(const char* string)
return 0;
}
strncpy(new_string, string, stringSize);
p = new_string;
while (*p != 0) {
for (p = new_string; *p != 0; ++p) {
*p = CM_CAST(char, tolower(*p));
++p;
}
return new_string;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment