Files
learning_c/ch_04/exercise_04-01/kstrindex.h
T
2020-11-03 21:34:46 -05:00

8 lines
154 B
C

#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[]);