summaryrefslogtreecommitdiff
path: root/levenshtein.h
diff options
context:
space:
mode:
Diffstat (limited to 'levenshtein.h')
-rw-r--r--levenshtein.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/levenshtein.h b/levenshtein.h
new file mode 100644
index 0000000..ce40762
--- /dev/null
+++ b/levenshtein.h
@@ -0,0 +1,20 @@
+/*
+ * levenshtein.h
+ *
+ * See the README file for copyright information
+ *
+ */
+
+
+#ifndef __LEVENSHTEIN_H
+#define __LEVENSHTEIN_H
+
+#include "lib/common.h"
+
+//***************************************************************************
+// LV Distance
+//***************************************************************************
+
+int lvDistance(const std::string source, const std::string target, int maxPer, int& maxDist);
+
+#endif // __LEVENSHTEIN_H