🌐 AI搜索 & 代理 主页
blob: 4105bf3549560acc7bd187b8a16fff2a5e739d09 [file] [log] [blame]
Johannes Schindelin8af84da2008-08-31 13:50:231#ifndef LEVENSHTEIN_H
2#define LEVENSHTEIN_H
3
4int levenshtein(const char *string1, const char *string2,
Junio C Hamano9517e6b2010-02-04 05:23:185 int swap_penalty, int substitution_penalty,
Johannes Schindelin8af84da2008-08-31 13:50:236 int insertion_penalty, int deletion_penalty);
7
8#endif