package pr2.algorithmen.textsearch;
public interface TextSearch {
int NOT_FOUND = -1;
int search(String haystack, String needle);
}