mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-15 03:28:49 -07:00
14 lines
232 B
C
14 lines
232 B
C
/**
|
|
* @file levenshtein.h
|
|
* @ingroup Core
|
|
*/
|
|
//! \todo Document this file.
|
|
|
|
#ifndef LEVENSHTEIN_H
|
|
#define LEVENSHTEIN_H
|
|
|
|
#include <QString>
|
|
|
|
int levenshteinDistance(const QString &s1, const QString &s2);
|
|
|
|
#endif // LEVENSHTEIN_H
|