/** * @file levenshtein.h * @ingroup Core * @brief TODO: Document this. */ #ifndef LEVENSHTEIN_H #define LEVENSHTEIN_H #include int levenshteinDistance(const QString &s1, const QString &s2); #endif // LEVENSHTEIN_H