mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-13 01:24:46 -07:00
--------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de> Co-authored-by: ebbit1q <ebbit1q@gmail.com>
14 lines
233 B
C
14 lines
233 B
C
/**
|
|
* @file levenshtein.h
|
|
* @ingroup Core
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef LEVENSHTEIN_H
|
|
#define LEVENSHTEIN_H
|
|
|
|
#include <QString>
|
|
|
|
int levenshteinDistance(const QString &s1, const QString &s2);
|
|
|
|
#endif // LEVENSHTEIN_H
|