1 
2 #ifndef LEVENSHTEIN_H
3 #define LEVENSHTEIN_H
4 
5 #include <string>
6 
7 int levenshtein_distance(const std::string &s1, const std::string &s2);
8 
9 #endif // LEVENSHTEIN_H
10