/* * levenshtein.h: SERIES plugin for the Video Disk Recorder * * See the README file for copyright information and how to reach the author. * */ #ifndef __LEVENSHTEIN_H #define __LEVENSHTEIN_H #include "common.h" //*************************************************************************** // //*************************************************************************** int lvDistance(const string source, const string target, int maxPer, int& maxDist); void prepareCompressed(string& pattern); #endif // __LEVENSHTEIN_H