wxMaxima
Loading...
Searching...
No Matches
levenshtein.h
1// This file was originally posted to
2// https://forums.wxwidgets.org/viewtopic.php?t=35124
3// from mjuergens (mjx). It is under the wxWidgets license
4// (https://www.wxwidgets.org/about/licence/) that is GPL-compatible.
5#ifndef _LEVENSHTEIN_
6#define _LEVENSHTEIN_
7
8#include <wx/wx.h>
9
10size_t LevenshteinDistance(const wxString &s1, const wxString &s2);
11
12#endif