8 lines
154 B
C
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[]);
|
|
|