automated commit by check50 [check50=True]

This commit is contained in:
kukemuna 2024-03-20 23:25:56 +02:00
parent 0e355321bc
commit 98bf6583c0
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ bool check(const char *word)
// +1 for NUL character // +1 for NUL character
char lword[strlen(word) + 1]; char lword[strlen(word) + 1];
for (int i = 0; i < strlen(lword); i++) for (int i = 0; i < strlen(word); i++)
{ {
lword[i] = tolower((word[i])); lword[i] = tolower((word[i]));
} }