int myFind(const char * s, const char * b) { int sSize = strlen(s); int bSize = strlen(b); int num = strcmp(s + 0, b + 0); for (int i = 1; i < bSize+