Finished Exercise 4-1

This commit is contained in:
kdeng00
2020-11-03 21:34:46 -05:00
parent 2b74d5ec42
commit faa919d6ed
5 changed files with 99 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#include <stdlib.h>
// Returns the right most index of t found in s.
// Returns -1 if t is not found in s.
int KStrIndex_strindex(char s[], char t[]);