We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9dea9c commit 89fd350Copy full SHA for 89fd350
0x06-pointers_arrays_strings/5-string_toupper.c
@@ -17,7 +17,7 @@ char *string_toupper(char *str)
17
18
while (str[index] != '\0')
19
{
20
- if ((str[index] >= 98) && (str[index] <= 122))
+ if ((str[index] >= 97) && (str[index] <= 122))
21
22
while (lower[index2] != '\0')
23
0 commit comments