Skip to content

Commit 5daa9d8

Browse files
authored
Merge pull request #68 from sadeem-albir/patch-9
Update strend.c
2 parents 95cd10e + a8d217c commit 5daa9d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chapter_5/exercise_5_04/strend.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ int strend(char *s, char *t)
3232
size_t t_length = strlen(t);
3333

3434
// Move the s & t pointer to the end of the corresponding strings.
35-
s += s_length;
36-
t += t_length;
35+
s += s_length - 1;
36+
t += t_length - 1;
3737

3838
// Check backwards if each character from string t occurs in the corresonding
3939
// location from the string s.

0 commit comments

Comments
 (0)