mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-16 15:32:15 -07:00
* Visual Deck Editor. * Lint. * Address comments. --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
8 lines
153 B
C
8 lines
153 B
C
#ifndef LEVENSHTEIN_H
|
|
#define LEVENSHTEIN_H
|
|
|
|
#include <QString>
|
|
|
|
int levenshteinDistance(const QString &s1, const QString &s2);
|
|
|
|
#endif // LEVENSHTEIN_H
|