1 #ifndef CPP_UTILITIES_LEVENSHTEIN_H 2 #define CPP_UTILITIES_LEVENSHTEIN_H 25 #endif // CPP_UTILITIES_LEVENSHTEIN_H #define CPP_UTILITIES_EXPORT
CPP_UTILITIES_EXPORT std::size_t computeDamerauLevenshteinDistance(const char *str1, std::size_t size1, const char *str2, std::size_t size2)
Contains various utilities such as computing Damerau–Levenshtein distance and N-dimensional arrays.